Skip to content

Commit

Permalink
asdfladsk
Browse files Browse the repository at this point in the history
  • Loading branch information
SoloJacobs committed Oct 12, 2023
1 parent 56c2e6c commit a265506
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 7 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/build_all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,19 @@ on:
- .github/workflows/build_all.yml

jobs:
# build_robotmk:
# uses: SoloJacobs/test_ci/.github/workflows/robotmk.yml@main
# build_rcc:
# uses: SoloJacobs/test_ci/.github/workflows/rcc.yml@main
build_robotmk:
uses: SoloJacobs/test_ci/.github/workflows/robotmk.yml@main
build_rcc:
uses: SoloJacobs/test_ci/.github/workflows/rcc.yml@main
build_test:
uses: SoloJacobs/test_ci/.github/workflows/test.yml@main
download:
runs-on: ubuntu-latest
needs: build_test
needs: [build_test, build_rcc, build_robotmk]
steps:
- uses: actions/download-artifact@v3
with:
name: my-artifact
name: robotmk.exe
- uses: actions/download-artifact@v3
with:
name: robotmk_collector.ps1
6 changes: 6 additions & 0 deletions .github/workflows/robotmk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,9 @@ jobs:
- name: "Build Robotmk"
working-directory: robotmk/v2/rust/
run: cargo build --target=x86_64-pc-windows-gnu --release
- name: 'Upload Artifact'
working-directory: robotmk/v2/rust/
uses: actions/upload-artifact@v3
with:
name: robotmk.exe
path: target/x86_64-pc-windows-gnu/release/robotmk.exe
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ jobs:
- name: 'Upload Artifact'
uses: actions/upload-artifact@v3
with:
name: my-artifact
name: test
path: LICENSE

0 comments on commit a265506

Please sign in to comment.