Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/gradle-nightly-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,13 @@ jobs:
zkevm_fork: PRAGUE
tests-with-ssh: ${{ inputs.tests-with-ssh || false }}

nightly-tests-osaka:
uses: ./.github/workflows/reusable-nightly-tests.yml
secrets: inherit
with:
zkevm_fork: OSAKA
tests-with-ssh: ${{ inputs.tests-with-ssh || false }}

# ==================================================================
# Replay Tests
# ==================================================================
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/gradle-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,13 @@ jobs:
zkevm_fork: PRAGUE
tests-with-ssh: ${{ inputs.tests-with-ssh || false}}

unit-tests-osaka:
needs: [ build ]
uses: ./.github/workflows/reusable-unit-tests.yml
with:
zkevm_fork: OSAKA
tests-with-ssh: ${{ inputs.tests-with-ssh || false}}

# ==================================================================
# Fast Replay Tests
# ==================================================================
Expand Down
13 changes: 12 additions & 1 deletion .github/workflows/gradle-weekly-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,24 @@ jobs:
with:
zkevm_fork: PRAGUE

weekly-unit-tests-osaka:
uses: ./.github/workflows/reusable-weekly-tests.yml
secrets: inherit
with:
zkevm_fork: OSAKA

weekly-prc-call-tests-prague:
uses: ./.github/workflows/reusable-weekly-prc-tests.yml
secrets: inherit
with:
zkevm_fork: PRAGUE

weekly-prc-call-tests-osaka:
uses: ./.github/workflows/reusable-weekly-prc-tests.yml
secrets: inherit
with:
zkevm_fork: OSAKA

weekly-replay-tests:
runs-on: gha-runner-scale-set-ubuntu-22.04-amd64-xxl
steps:
Expand Down Expand Up @@ -58,4 +70,3 @@ jobs:
payload: |
name: "WeeklyReplay"
status: "${{ job.status }}"

10 changes: 10 additions & 0 deletions .github/workflows/reference-blockchain-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,13 @@ jobs:
failed_module: ${{ inputs.failed_module || '' }}
failed_constraint: ${{ inputs.failed_constraint || '' }}
commit: ${{ inputs.commit || '' }}

blockchain-reference-tests-osaka:
uses: ./.github/workflows/reusable-blockchain-tests.yml
secrets: inherit
with:
zkevm_fork: OSAKA
test_filter: ${{ inputs.test_filter || 'BlockchainReferenceTest_*' }}
failed_module: ${{ inputs.failed_module || '' }}
failed_constraint: ${{ inputs.failed_constraint || '' }}
commit: ${{ inputs.commit || '' }}
2 changes: 1 addition & 1 deletion reference-tests/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ configurations.configureEach {

tasks.register("downloadExecutionSpecFixtures", Download)
{
src "https://github.com/ethereum/execution-spec-tests/releases/download/v5.2.0/fixtures_develop.tar.gz"
src "https://github.com/ethereum/execution-spec-tests/releases/download/v5.3.0/fixtures_develop.tar.gz"
dest "./build/fixtures_develop.tar.gz"
overwrite false
}
Expand Down
Loading
Loading