Skip to content

Commit

Permalink
upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
SoloJacobs committed Mar 8, 2024
1 parent 27dd1f7 commit 66079c9
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 9 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/rcc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,9 @@ 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
id: artifact-upload-step
with:
path: build
name: rcc
path: build/
if-no-files-found: error
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ jobs:
rcc:
uses: ./.github/workflows/rcc.yaml
system_tests:
uses: ./.github/workflows/system_tests.yaml
needs: rcc
uses: ./.github/workflows/system_tests.yaml
with:
rcc_artifact_id: ${{ needs.rcc.outputs.rcc_artifact_id }}
build_robotmk:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/robotmk_build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ 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
name: rmk_windows64
path: ${{ github.workspace }}/target/x86_64-pc-windows-gnu/release/
if-no-files-found: error

4 changes: 2 additions & 2 deletions .github/workflows/system_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ jobs:
- uses: actions/download-artifact@v4
with:
path: C:\
rcc_artifact_id: ${{ inputs.rcc_artifact_id }}
run-id: ${{ inputs.rcc_artifact_id }}
- uses: actions/checkout@v4
- uses: actions-rust-lang/[email protected]
with:
target: x86_64-pc-windows-gnu
- run: cargo test --target=x86_64-pc-windows-gnu --test test_scheduler -- --nocapture --ignored
env:
TEST_DIR: C:\test_scheduler
RCC_BINARY_PATH: C:\artifact\windows64\rcc.exe
RCC_BINARY_PATH: C:\rcc\windows64\rcc.exe
RUN_FOR: 240
- uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit 66079c9

Please sign in to comment.