forked from risc0/risc0
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
host toolchain: update to 1.74 (risc0#1428)
Update the host-side toolchain to 1.74, remove old doc tests, and add a doc test for 0.20
- Loading branch information
Showing
13 changed files
with
401 additions
and
3,065 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,40 +26,34 @@ jobs: | |
pull-requests: read | ||
outputs: | ||
main: ${{ steps.filter.outputs.main }} | ||
version-0_18: ${{ steps.filter.outputs.version-0_18 }} | ||
version-0_19: ${{ steps.filter.outputs.version-0_19 }} | ||
version-0_20: ${{ steps.filter.outputs.version-0_20 }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: risc0/paths-filter@4067d885736b84de7c414f582ac45897079b0a78 | ||
id: filter | ||
with: | ||
filters: | | ||
main: | ||
- rust-toolchain.toml | ||
- .github/actions/** | ||
- .github/workflows/website-test.yml | ||
- bonsai/** | ||
- risc0/** | ||
- website/api/** | ||
- website/doc-test/main/** | ||
- website/docs/** | ||
version-0_18: | ||
version-0_20: | ||
- .github/actions/** | ||
- .github/workflows/website-test.yml | ||
- website/api_versioned_docs/version-0.18/** | ||
- website/doc-test/version-0.18/** | ||
version-0_19: | ||
- .github/actions/** | ||
- .github/workflows/website-test.yml | ||
- website/api_versioned_docs/version-0.19/** | ||
- website/doc-test/version-0.19/** | ||
- website/api_versioned_docs/version-0.20/** | ||
- website/doc-test/version-0.20/** | ||
# see: https://github.com/orgs/community/discussions/26822 | ||
doc-test: | ||
if: always() | ||
needs: | ||
- main | ||
- version-0_18 | ||
- version-0_19 | ||
- version-0_20 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check all job status | ||
|
@@ -88,7 +82,7 @@ jobs: | |
with: | ||
crate: cargo-binstall | ||
version: "1.4" | ||
- run: cargo binstall -y --force cargo-risczero@0.19 | ||
- run: cargo binstall -y --force cargo-risczero@0.20 | ||
- run: cargo risczero install --version $RISC0_TOOLCHAIN_VERSION | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
@@ -102,42 +96,8 @@ jobs: | |
|
||
- run: sccache --show-stats | ||
|
||
version-0_18: | ||
if: needs.changes.outputs.version-0_18 == 'true' | ||
needs: changes | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
# Recursive checkout required to build Solidity contracts and bindings. | ||
submodules: recursive | ||
- uses: ./.github/actions/rustup | ||
- uses: ./.github/actions/sccache | ||
with: | ||
key: Linux-default | ||
- uses: risc0/foundry-toolchain@2fe7e70b520f62368a0e3c464f997df07ede420f | ||
with: | ||
version: nightly-09fe3e041369a816365a020f715ad6f94dbce9f2 | ||
- uses: risc0/cargo-install@b9307573043522ab0d3e3be64a51763b765b52a4 | ||
with: | ||
crate: cargo-binstall | ||
version: "1.4" | ||
- run: cargo binstall -y --force [email protected] | ||
- run: cargo risczero install --version $RISC0_TOOLCHAIN_VERSION | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: build | ||
run: cargo test --release --no-run | ||
working-directory: website/doc-test/version-0.18 | ||
- name: test | ||
run: cargo test --release | ||
working-directory: website/doc-test/version-0.18 | ||
|
||
- run: sccache --show-stats | ||
|
||
version-0_19: | ||
if: needs.changes.outputs.version-0_19 == 'true' | ||
version-0_20: | ||
if: needs.changes.outputs.version-0_20 == 'true' | ||
needs: changes | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
@@ -156,16 +116,16 @@ jobs: | |
with: | ||
crate: cargo-binstall | ||
version: "1.4" | ||
- run: cargo binstall -y --force cargo-risczero@0.19 | ||
- run: cargo binstall -y --force cargo-risczero@0.20 | ||
- run: cargo risczero install --version $RISC0_TOOLCHAIN_VERSION | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: build | ||
run: cargo test --release --no-run | ||
working-directory: website/doc-test/version-0.19 | ||
working-directory: website/doc-test/version-0.20 | ||
- name: test | ||
run: cargo test --release | ||
working-directory: website/doc-test/version-0.19 | ||
working-directory: website/doc-test/version-0.20 | ||
|
||
- run: sccache --show-stats |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[toolchain] | ||
channel = "1.73" | ||
channel = "1.74" | ||
components = ["clippy", "rustfmt", "rust-src"] | ||
targets = ["wasm32-unknown-unknown"] | ||
profile = "minimal" |
Oops, something went wrong.