Skip to content

Commit

Permalink
Install rustup and toolchain
Browse files Browse the repository at this point in the history
  • Loading branch information
parno committed Nov 25, 2024
1 parent ddcc768 commit 73cc1f8
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/verus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,19 @@ jobs:
steps:
- name: checkout
uses: actions/checkout@v4

- name: Install toolchain dependencies
shell: bash
run: |
dnf install -y gcc
curl --proto '=https' --tlsv1.2 --retry 10 --retry-connrefused -fsSL "https://sh.rustup.rs" | sh -s -- --profile minimal --default-toolchain none -y
echo "${CARGO_HOME:-$HOME/.cargo}/bin" >> $GITHUB_PATH
- name: Install Rust toolchain
run: |
rustup update --no-self-update stable
rustup install 1.79.0-x86_64-unknown-linux-gnu
- name: get Verus release info
id: verus-release-info
#uses: pozetroninc/[email protected]
Expand Down

0 comments on commit 73cc1f8

Please sign in to comment.