-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'arith-dev' into 1727-feat-enable-popping-transaction-bu…
…ndles
- Loading branch information
Showing
41 changed files
with
714 additions
and
292 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 |
---|---|---|
|
@@ -8,54 +8,9 @@ on: | |
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
ethereum-tests: | ||
runs-on: gha-runner-scale-set-ubuntu-22.04-amd64-xxl | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
with: | ||
submodules: recursive | ||
|
||
- name: Setup Test Environment | ||
uses: ./.github/actions/setup-environment | ||
with: | ||
rust-corset: true | ||
|
||
- name: Generate General State Reference Tests | ||
run: ./gradlew generateGeneralStateReferenceTests -Dorg.gradle.parallel=true -Dorg.gradle.caching=true | ||
env: | ||
JAVA_OPTS: -Dorg.gradle.daemon=false | ||
CORSET_FLAGS: fields,expand,expand,expand | ||
|
||
- name: Run General State Reference Tests | ||
run: ./gradlew -Dblockchain=Ethereum referenceGeneralStateTests | ||
env: | ||
REFERENCE_TESTS_PARALLELISM: 10 | ||
JAVA_OPTS: -Dorg.gradle.daemon=false | ||
CORSET_FLAGS: fields,expand,expand,expand | ||
|
||
- name: Upload test report | ||
if: always() | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: ethereum-tests-report | ||
path: | | ||
reference-tests/build/reports/tests/**/* | ||
tmp/local/* | ||
- name: Failure Notification | ||
if: ${{ failure() || cancelled() }} | ||
uses: slackapi/[email protected] | ||
with: | ||
webhook: ${{ secrets.SLACK_WEBHOOK_URL }} | ||
webhook-type: webhook-trigger | ||
payload: | | ||
name: "Daily State Tests (Rust Corset)" | ||
status: "${{ job.status }}" | ||
ethereum-tests-go-corset: | ||
runs-on: gha-runner-scale-set-ubuntu-22.04-amd64-xxl | ||
steps: | ||
- name: Checkout repository | ||
|
@@ -72,21 +27,19 @@ jobs: | |
run: ./gradlew generateGeneralStateReferenceTests -Dorg.gradle.caching=true | ||
env: | ||
JAVA_OPTS: -Dorg.gradle.daemon=false | ||
ZKEVM_BIN: "zkevm_for_reference_tests.go.bin" | ||
|
||
- name: Run General State Reference Tests | ||
run: GOMEMLIMIT=64GiB ./gradlew -Dblockchain=Ethereum referenceGeneralStateTests | ||
env: | ||
JAVA_OPTS: -Dorg.gradle.daemon=false | ||
CORSET_FLAGS: disable | ||
GOCORSET_FLAGS: -vw --ansi-escapes=false --report --air | ||
ZKEVM_BIN: "zkevm_for_reference_tests.go.bin" | ||
GOCORSET_FLAGS: -vw -b1024 --ansi-escapes=false --report --air | ||
|
||
- name: Upload test report | ||
if: always() | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: ethereum-tests-go-corset-report | ||
name: ethereum-tests-report | ||
path: | | ||
reference-tests/build/reports/tests/**/* | ||
tmp/local/* | ||
|
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
29 changes: 29 additions & 0 deletions
29
...java/net/consensys/linea/zktracer/module/hub/defer/AfterTransactionFinalizationDefer.java
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,29 @@ | ||
/* | ||
* Copyright Consensys Software Inc. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on | ||
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations under the License. | ||
* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
package net.consensys.linea.zktracer.module.hub.defer; | ||
|
||
import net.consensys.linea.zktracer.module.hub.Hub; | ||
import org.hyperledger.besu.evm.worldstate.WorldView; | ||
|
||
/** | ||
* Actions which get deferred to {@link AfterTransactionFinalizationDefer} are those actions that | ||
* should be performed after the TX_FINL phase of transaction processing. These include | ||
* | ||
* <p>- the account wiping of successful <b>SELFDESTRUCT</b>'s | ||
*/ | ||
public interface AfterTransactionFinalizationDefer { | ||
|
||
void resolveAfterTransactionFinalization(Hub hub, WorldView view); | ||
} |
Oops, something went wrong.