-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This puts through two minor fixes for the GeneralStateTests. Firstly, it adds notifications from the Rust corset side. Secondly, it drops parallelism from the go-corset side.
- Loading branch information
1 parent
0e1c9e6
commit 6bb1e8a
Showing
1 changed file
with
11 additions
and
2 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 |
---|---|---|
|
@@ -51,6 +51,15 @@ jobs: | |
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 Reference Tests (Rust Corset)" | ||
status: "${{ job.status }}" | ||
ethereum-tests-go-corset: | ||
runs-on: ubuntu-latest-128 | ||
|
@@ -73,7 +82,7 @@ jobs: | |
run: cd ./linea-constraints; make zkevm_for_reference_tests.bin -B; cd .. | ||
|
||
- name: Generate General State Reference Tests | ||
run: ./gradlew generateGeneralStateReferenceTests -Dorg.gradle.parallel=true -Dorg.gradle.caching=true | ||
run: ./gradlew generateGeneralStateReferenceTests -Dorg.gradle.caching=true | ||
env: | ||
JAVA_OPTS: -Dorg.gradle.daemon=false | ||
CORSET_FLAGS: fields,expand,expand,expand | ||
|
@@ -101,5 +110,5 @@ jobs: | |
webhook: ${{ secrets.SLACK_WEBHOOK_URL }} | ||
webhook-type: webhook-trigger | ||
payload: | | ||
name: "Daily Reference Tests" | ||
name: "Daily Reference Tests (Go Corset)" | ||
status: "${{ job.status }}" |