Skip to content

Commit

Permalink
workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
SoloJacobs committed Mar 8, 2024
1 parent 8e8ab3e commit 8c5adec
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 8 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/rcc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ jobs:
path: build
key: rcc-${{ env.RCC_TAG }}-${{ env.GO_VERSION }}-${{ env.RUBY_VERSION }}
fail-on-cache-miss: true
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
path: build
if-no-files-found: error
overwrite: true
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ jobs:
# release. For setting a different ref, all `needs` jobs need to be
# adjusted. Currently, everything uses the default branch.

- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4

- run: zip -r executables.zip artifact
11 changes: 7 additions & 4 deletions .github/workflows/robotmk_build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,12 @@ jobs:

- run: cargo build --target=x86_64-pc-windows-gnu --release

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
path: |
${{ github.workspace }}/target/x86_64-pc-windows-gnu/release/robotmk_scheduler.exe
${{ github.workspace }}/target/x86_64-pc-windows-gnu/release/robotmk_agent_plugin.exe
path: ${{ github.workspace }}/target/x86_64-pc-windows-gnu/release/robotmk_scheduler.exe
if-no-files-found: error

- uses: actions/upload-artifact@v4
with:
path: ${{ github.workspace }}/target/x86_64-pc-windows-gnu/release/robotmk_agent_plugin.exe
if-no-files-found: error
5 changes: 3 additions & 2 deletions .github/workflows/system_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
needs:
- rcc
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
path: C:\
- uses: actions/checkout@v4
Expand All @@ -25,6 +25,7 @@ jobs:
TEST_DIR: C:\test_scheduler
RCC_BINARY_PATH: C:\artifact\windows64\rcc.exe
RUN_FOR: 240
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
path: C:\test_scheduler
overwrite: true

0 comments on commit 8c5adec

Please sign in to comment.