Skip to content

Commit

Permalink
chore:(pact_verifier_cli): correct linux release script
Browse files Browse the repository at this point in the history
  • Loading branch information
rholshausen committed Jul 12, 2023
1 parent 8701743 commit 64a862e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion rust/pact_verifier_cli/release-linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ gzip -c ../target/release/pact_verifier_cli > ../target/artifacts/pact_verifier_
openssl dgst -sha256 -r ../target/artifacts/pact_verifier_cli-linux-x86_64.gz > ../target/artifacts/pact_verifier_cli-linux-x86_64.gz.sha256

echo -- Build the aarch64 release artifacts --
rustup toolchain install 1.69
cargo install cross
cross build --target aarch64-unknown-linux-gnu --release
rustup run 1.69 cross build --target aarch64-unknown-linux-gnu --release
gzip -c ../target/aarch64-unknown-linux-gnu/release/pact_verifier_cli > ../target/artifacts/pact_verifier_cli-linux-aarch64.gz
openssl dgst -sha256 -r ../target/artifacts/pact_verifier_cli-linux-aarch64.gz > ../target/artifacts/pact_verifier_cli-linux-aarch64.gz.sha256

0 comments on commit 64a862e

Please sign in to comment.