Skip to content

Commit

Permalink
make default rust version 1.79.0 in release (#1122)
Browse files Browse the repository at this point in the history
* make default rust version 1.79.0

* use home directory for rzup
  • Loading branch information
eyusufatik authored Sep 6, 2024
1 parent a2e378c commit 21c8ce8
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,17 @@ jobs:
- name: Install Rust
run: |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
rustup install 1.79.0
rustup default 1.79.0
- name: Install Cargo Binstall
run: |
source $HOME/.cargo/env
cargo install cargo-binstall
cargo install --version 1.7.0 cargo-binstall
- name: Install Cargo Risczero
run: |
curl -L https://risczero.com/install | bash; source ~/.bashrc; ./.risc0/bin/rzup -v 1.0.5;
curl -L https://risczero.com/install | bash; source ~/.bashrc; ~/.risc0/bin/rzup -v 1.0.5;
- name: Build Project
env:
Expand Down Expand Up @@ -69,16 +71,18 @@ jobs:
- name: Install Rust
run: |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
rustup install 1.79.0
rustup default 1.79.0
- name: Install Cargo Binstall
run: |
source $HOME/.cargo/env
cargo install cargo-binstall
cargo install --version 1.7.0 cargo-binstall
- name: Install Cargo Risczero
run: |
source $HOME/.cargo/env
curl -L https://risczero.com/install | bash; source ~/.bashrc; ./.risc0/bin/rzup -v 1.0.5;
curl -L https://risczero.com/install | bash; source ~/.bashrc; ~/.risc0/bin/rzup -v 1.0.5;
- name: Build Project
env:
Expand Down

0 comments on commit 21c8ce8

Please sign in to comment.