-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(fw): fix verkle transition tests (naive).
- Loading branch information
1 parent
6cc75b6
commit c7e1136
Showing
295 changed files
with
22,256 additions
and
15,290 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
name: 'Build Besu EVM' | ||
description: 'Builds the Besu EVM binary' | ||
inputs: | ||
repo: | ||
description: 'Source repository to use to build the EVM binary' | ||
required: true | ||
default: 'hyperledger/besu' | ||
ref: | ||
description: 'Reference to branch, commit, or tag to use to build the EVM binary' | ||
required: true | ||
default: 'main' | ||
java: | ||
description: 'Java version to use to build Besu' | ||
required: false | ||
default: '21' | ||
java-distro: | ||
description: 'Java distribution to use to build Besu' | ||
required: false | ||
default: 'temurin' | ||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Checkout Besu | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: ${{ inputs.repo }} | ||
ref: ${{ inputs.ref }} | ||
path: besu | ||
- name: Setup Java | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: ${{ inputs.java }} | ||
distribution: ${{ inputs.java-distro }} | ||
cache: 'gradle' | ||
- name: Build evm cmd | ||
shell: bash | ||
run: | | ||
cd $GITHUB_WORKSPACE/besu | ||
./gradlew installDist | ||
echo $GITHUB_WORKSPACE/besu/build/install/besu/bin/evmtool >> $GITHUB_PATH |
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
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
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,27 @@ | ||
([#497](https://github.com/ethereum/execution-spec-tests/pull/497)) | ||
GeneralStateTests/stCreate2/call_outsize_then_create2_successful_then_returndatasize.json | ||
GeneralStateTests/stCreate2/call_then_create2_successful_then_returndatasize.json | ||
|
||
([#647](https://github.com/ethereum/execution-spec-tests/pull/647)) | ||
EOFTests/efValidation/EOF1_returncontract_invalid_.json | ||
EOFTests/efValidation/EOF1_returncontract_valid_.json | ||
|
||
([#440](https://github.com/ethereum/execution-spec-tests/pull/440)) | ||
GeneralStateTests/Cancun/stEIP1153-transientStorage/01_tloadBeginningTxn.json | ||
GeneralStateTests/Cancun/stEIP1153-transientStorage/02_tloadAfterTstore.json | ||
GeneralStateTests/Cancun/stEIP1153-transientStorage/03_tloadAfterStoreIs0.json | ||
GeneralStateTests/Cancun/stEIP1153-transientStorage/04_tloadAfterCall.json | ||
GeneralStateTests/Cancun/stEIP1153-transientStorage/05_tloadReentrancy.json | ||
GeneralStateTests/Cancun/stEIP1153-transientStorage/06_tstoreInReentrancyCall.json | ||
GeneralStateTests/Cancun/stEIP1153-transientStorage/07_tloadAfterReentrancyStore.json | ||
GeneralStateTests/Cancun/stEIP1153-transientStorage/08_revertUndoesTransientStore.json | ||
GeneralStateTests/Cancun/stEIP1153-transientStorage/09_revertUndoesAll.json | ||
|
||
GeneralStateTests/Cancun/stEIP1153-transientStorage/11_tstoreDelegateCall.json | ||
GeneralStateTests/Cancun/stEIP1153-transientStorage/12_tloadDelegateCall.json | ||
GeneralStateTests/Cancun/stEIP1153-transientStorage/13_tloadStaticCall.json | ||
|
||
GeneralStateTests/Cancun/stEIP1153-transientStorage/16_tloadGas.json | ||
GeneralStateTests/Cancun/stEIP1153-transientStorage/18_tloadAfterStore.json | ||
|
||
GeneralStateTests/Cancun/stEIP1153-transientStorage/20_oogUndoesTransientStoreInCall.json |
Oops, something went wrong.