Skip to content

Commit

Permalink
chore: build auditor in release artifacts workflow
Browse files Browse the repository at this point in the history
This workflow is useful for testing and I can use it to produce auditor artifacts that can manually
be uploaded to S3.
  • Loading branch information
jacderida authored and RolandSherwin committed May 16, 2024
1 parent 6b0cdac commit e29c863
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build-release-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,13 +104,14 @@ jobs:
shell: bash
run: |
tree artifacts
just package-release-assets "faucet"
just package-release-assets "node-launchpad"
just package-release-assets "safe"
just package-release-assets "safenode"
just package-release-assets "faucet"
just package-release-assets "safenode_rpc_client"
just package-release-assets "safenode-manager"
just package-release-assets "safenodemand"
just package-release-assets "node-launchpad"
just package-release-assets "sn_auditor"
- uses: actions/upload-artifact@main
with:
name: packaged_binaries
Expand Down
2 changes: 1 addition & 1 deletion Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ build-release-artifacts arch:
cargo build --release --target $arch --bin safenode-manager
cargo build --release --target $arch --bin safenodemand
cargo build --release --target $arch --bin safenode_rpc_client
cross build --release --target $arch --bin sn_auditor
cargo build --release --target $arch --bin sn_auditor
fi

find target/$arch/release -maxdepth 1 -type f -exec cp '{}' artifacts \;
Expand Down

0 comments on commit e29c863

Please sign in to comment.