Skip to content

Commit

Permalink
try fix: cli ci
Browse files Browse the repository at this point in the history
  • Loading branch information
arayikhalatyan committed Dec 18, 2024
1 parent 120af0c commit b310a6c
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,19 @@ jobs:
- name: Install cargo-openvm
working-directory: crates/cli
run: |
arch=$(uname -m)
case $arch in
arm64|aarch64)
rustup component add rust-src --toolchain nightly-2024-10-30-aarch64-unknown-linux-gnu
;;
x86_64|amd64)
rustup component add rust-src --toolchain nightly-2024-10-30-x86_64-unknown-linux-gnu
;;
*)
echo "Unsupported architecture: $arch"
exit 1
;;
esac
cargo install --force --locked --path .
- name: Build book examples
Expand Down

0 comments on commit b310a6c

Please sign in to comment.