Skip to content

Commit

Permalink
decrease parallelism
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianHuc committed Dec 13, 2024
1 parent 4eb1dc6 commit 57b0836
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/gradle-ethereum-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Run General State Reference Tests
run: ./gradlew referenceGeneralStateTests
env:
REFERENCE_TESTS_PARALLELISM: 4
REFERENCE_TESTS_PARALLELISM: 10
JAVA_OPTS: -Dorg.gradle.daemon=false
CORSET_FLAGS: fields,expand,expand,expand

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/reference-blockchain-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ on:

jobs:
blockchain-reference-tests:
runs-on: [ubuntu-latest-128]
runs-on: [ubuntu-latest-256]
steps:
- name: Checkout repository
uses: actions/checkout@v3
Expand All @@ -43,7 +43,7 @@ jobs:
run: cd ./linea-constraints; make zkevm_for_reference_tests.bin -B; cd ..

- name: Generate block chain reference tests
run: ./gradlew :reference-tests:generateBlockchainReferenceTests -Dorg.gradle.parallel=true -Dorg.gradle.caching=true
run: ./gradlew :reference-tests:generateBlockchainReferenceTests -Dorg.gradle.parallel=true -Dorg.gradle.caching=true
env:
JAVA_OPTS: -Dorg.gradle.daemon=false
CORSET_FLAGS: fields,expand,expand,expand
Expand All @@ -63,10 +63,10 @@ jobs:
run: mv ${{ github.workspace }}/tmp/${{ steps.extract_branch.outputs.branch }}/failedBlockchainReferenceTests.json ${{ github.workspace }}/tmp/${{ steps.extract_branch.outputs.branch }}/failedBlockchainReferenceTests-input.json

- name: Run reference blockchain tests
run: ./gradlew referenceBlockchainTests -x spotlessCheck
run: GOMEMLIMIT=196GiB ./gradlew referenceBlockchainTests -x spotlessCheck
timeout-minutes: 180
env:
REFERENCE_TESTS_PARALLELISM: 2
REFERENCE_TESTS_PARALLELISM: 1
JAVA_OPTS: -Dorg.gradle.daemon=false
CORSET_FLAGS: disable
GOCORSET_FLAGS: -wd --ansi-escapes=false --report --air
Expand Down

0 comments on commit 57b0836

Please sign in to comment.