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

Bump version to 0.5.0-rc.1 #1120

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from all 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
23 changes: 14 additions & 9 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,18 +25,20 @@ 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: |
cargo binstall -y cargo-risczero
cargo risczero install --version v2024-04-22.0
# TODO: do below on testnet launch
# curl -L https://risczero.com/install | bash; source /home/runner/.bashrc; rzup -v 1.0.5;
curl -L https://risczero.com/install | bash; source ~/.bashrc; ./.risc0/bin/rzup -v 1.0.5;
env:
XDG_CONFIG_HOME: "."
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Build Project
env:
Expand Down Expand Up @@ -72,18 +74,21 @@ 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
cargo binstall -y cargo-risczero
cargo risczero install --version v2024-04-22.0

curl -L https://risczero.com/install | bash; source ~/.bashrc; ./.risc0/bin/rzup -v 1.0.5;
env:
XDG_CONFIG_HOME: "."
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Build Project
env:
REPR_GUEST_BUILD: 1
Expand Down
Loading
Loading