-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of github.com:risc0/zeth into rkhalil/1.2.1-rc.0-…
…perf
- Loading branch information
Showing
34 changed files
with
1,150 additions
and
5,075 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: risczero toolchain install | ||
description: Install risczero toolchain | ||
|
||
inputs: | ||
version: | ||
description: 'Version of the RISC Zero to install' | ||
required: true | ||
type: string | ||
toolchain-version: | ||
description: 'Version of the RISC Zero toolchains to install' | ||
required: false | ||
default: '' | ||
type: string | ||
|
||
runs: | ||
using: composite | ||
steps: | ||
- uses: risc0/cargo-install@v3 | ||
with: | ||
crate: cargo-binstall | ||
version: '=1.6' | ||
locked: true | ||
|
||
- run: cargo binstall -y --force cargo-risczero@${{ inputs.version }} | ||
shell: bash | ||
|
||
- run: cargo risczero install ${{ inputs.toolchain-version != '' && format('--version {0}', inputs.toolchain-version) || '' }} | ||
shell: bash | ||
|
||
- name: test risczero | ||
shell: bash | ||
run: cargo risczero --version |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[submodule "testing/ef-tests/testdata"] | ||
path = testing/ef-tests/testdata | ||
url = https://github.com/ethereum/tests.git |
Oops, something went wrong.