build(core): all-around tx check in assertoor #267
Workflow file for this run
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
name: Assertoor | ||
on: | ||
pull_request: | ||
branches: ["**"] | ||
paths-ignore: | ||
- "README.md" | ||
- "LICENSE" | ||
- "**/README.md" | ||
- "**/docs/**" | ||
- "crates/vm/levm/**" | ||
- "crates/l2/**" | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | ||
cancel-in-progress: true | ||
env: | ||
RUST_VERSION: 1.80.1 | ||
jobs: | ||
build: | ||
uses: ./.github/workflows/docker_build.yaml | ||
Check failure on line 22 in .github/workflows/asertoor.yaml GitHub Actions / .github/workflows/asertoor.yamlInvalid workflow file
|
||
run-assertoor-tx-check: | ||
name: Transaction Check | ||
runs-on: ubuntu-latest | ||
needs: [build] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Download artifacts | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: ethrex_image | ||
path: /tmp | ||
- name: Load image | ||
run: | | ||
docker load --input /tmp/ethrex_image.tar | ||
- name: Run assertoor | ||
uses: ethpandaops/kurtosis-assertoor-github-action@v1 | ||
with: | ||
enclave_name: "ethrex-assertoor-tx" | ||
kurtosis_version: "1.4.2" | ||
ethereum_package_url: "github.com/lambdaclass/ethereum-package" | ||
ethereum_package_branch: "ethrex-integration" | ||
ethereum_package_args: "./test_data/assertoor/network_params_tx.yaml" | ||
run-assertoor-blob-check: | ||
name: Blobs & Stability Check | ||
runs-on: ubuntu-latest | ||
needs: [build] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Download artifacts | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: ethrex_image | ||
path: /tmp | ||
- name: Load image | ||
run: | | ||
docker load --input /tmp/ethrex_image.tar | ||
- name: Run assertoor | ||
uses: ethpandaops/kurtosis-assertoor-github-action@v1 | ||
with: | ||
enclave_name: "ethrex-assertoor-blob" | ||
kurtosis_version: "1.4.2" | ||
ethereum_package_url: "github.com/lambdaclass/ethereum-package" | ||
ethereum_package_branch: "ethrex-integration" | ||
ethereum_package_args: "./test_data/assertoor/network_params_blob.yaml" | ||