-
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.
chore: Enable Ethereum Execution Tests (#122)
* Make providers resettable * Re-add eth execution tests * Use HashMap::default() instead of new() to also work with newer alloy versions * run in CI * fix CI * fix fmt * add missing files * quote version * fix env name * fix CI * add validate * fix test provider --------- Co-authored-by: Rami Khalil <the.rami.khalil@gmail.com>
- Loading branch information
1 parent
cecf5ec
commit 2dce795
Showing
26 changed files
with
897 additions
and
4,783 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 |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Oops, something went wrong.