Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: Add section to copy rusk artifact to shared folder on the CI host #2314

Merged
merged 4 commits into from
Sep 10, 2024
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .github/workflows/rusk_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,3 +76,17 @@ jobs:
- uses: actions/checkout@v4
- uses: dsherret/rust-toolchain-file@v1
- run: cargo fmt --all -- --check
copy_to_host:
needs: test_nightly
runs-on: core
if: needs.test_nightly.result == 'success' && github.base_ref == 'master'
continue-on-error: true
steps:
- name: "Download Rusk Artifact"
uses: actions/download-artifact@v3
with:
name: rusk-artifact
- name: "Copy Rusk to host"
run: |
mkdir -p /var/opt/rusk-artifacts
cp ./target/release/rusk /var/opt/rusk-artifacts
Loading