Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
skylenet committed Jan 14, 2025
1 parent 414ae7d commit f3a37b8
Showing 1 changed file with 55 additions and 52 deletions.
107 changes: 55 additions & 52 deletions .github/workflows/pectra.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
env:
S3_BUCKET: hive-results
S3_PATH: pectra-devnet-5
S3_PUBLIC_URL: https://hive.ethpandaops.io/pectra-devnet-5
INSTALL_RCLONE_VERSION: v1.68.2
GLOBAL_EXTRA_FLAGS: >-
--sim.buildarg fixtures=https://github.com/ethereum/execution-spec-tests/releases/download/pectra-devnet-5%40v1.1.0/fixtures_pectra-devnet-5.tar.gz
Expand Down Expand Up @@ -54,7 +55,8 @@ jobs:
strategy:
fail-fast: false
matrix:
client: [go-ethereum, besu, reth, nethermind, erigon]
#client: [go-ethereum, besu, reth, nethermind, erigon]
client: [go-ethereum, besu]
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/install-deps
Expand All @@ -67,58 +69,59 @@ jobs:
s3_upload: true
s3_bucket: ${{ env.S3_BUCKET }}
s3_path: ${{ env.S3_PATH }}
s3_public_url: ${{ env.S3_PUBLIC_URL }}
rclone_config: ${{ secrets.RCLONE_CONFIG }}
rclone_version: ${{ env.INSTALL_RCLONE_VERSION }}
workflow_artifact_upload: true

eest-c-engine:
runs-on: self-hosted-ghr-size-l-x64
concurrency:
group: >-
${{ github.head_ref }}-${{ matrix.client }}-eest-consume-engine
cancel-in-progress: true
strategy:
fail-fast: false
matrix:
client: [go-ethereum, besu, reth, nethermind, erigon]
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/install-deps
- uses: ./
with:
client: ${{ matrix.client }}
simulator: ethereum/eest/consume-engine
client_config: ${{ env.CLIENT_CONFIG }}
extra_flags: ${{ env.GLOBAL_EXTRA_FLAGS }}
s3_upload: true
s3_bucket: ${{ env.S3_BUCKET }}
s3_path: ${{ env.S3_PATH }}
rclone_config: ${{ secrets.RCLONE_CONFIG }}
rclone_version: ${{ env.INSTALL_RCLONE_VERSION }}
workflow_artifact_upload: true

eest-c-rlp:
runs-on: self-hosted-ghr-size-l-x64
concurrency:
group: >-
${{ github.head_ref }}-${{ matrix.client }}-eest-consume-rlp
cancel-in-progress: true
strategy:
fail-fast: false
matrix:
client: [go-ethereum, besu, reth, nethermind, erigon]
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/install-deps
- uses: ./
with:
client: ${{ matrix.client }}
simulator: ethereum/eest/consume-rlp
client_config: ${{ env.CLIENT_CONFIG }}
extra_flags: ${{ env.GLOBAL_EXTRA_FLAGS }}
s3_upload: true
s3_bucket: ${{ env.S3_BUCKET }}
s3_path: ${{ env.S3_PATH }}
rclone_config: ${{ secrets.RCLONE_CONFIG }}
rclone_version: ${{ env.INSTALL_RCLONE_VERSION }}
workflow_artifact_upload: true
# eest-c-engine:
# runs-on: self-hosted-ghr-size-l-x64
# concurrency:
# group: >-
# ${{ github.head_ref }}-${{ matrix.client }}-eest-consume-engine
# cancel-in-progress: true
# strategy:
# fail-fast: false
# matrix:
# client: [go-ethereum, besu, reth, nethermind, erigon]
# steps:
# - uses: actions/checkout@v4
# - uses: ./.github/actions/install-deps
# - uses: ./
# with:
# client: ${{ matrix.client }}
# simulator: ethereum/eest/consume-engine
# client_config: ${{ env.CLIENT_CONFIG }}
# extra_flags: ${{ env.GLOBAL_EXTRA_FLAGS }}
# s3_upload: true
# s3_bucket: ${{ env.S3_BUCKET }}
# s3_path: ${{ env.S3_PATH }}
# rclone_config: ${{ secrets.RCLONE_CONFIG }}
# rclone_version: ${{ env.INSTALL_RCLONE_VERSION }}
# workflow_artifact_upload: true
#
# eest-c-rlp:
# runs-on: self-hosted-ghr-size-l-x64
# concurrency:
# group: >-
# ${{ github.head_ref }}-${{ matrix.client }}-eest-consume-rlp
# cancel-in-progress: true
# strategy:
# fail-fast: false
# matrix:
# client: [go-ethereum, besu, reth, nethermind, erigon]
# steps:
# - uses: actions/checkout@v4
# - uses: ./.github/actions/install-deps
# - uses: ./
# with:
# client: ${{ matrix.client }}
# simulator: ethereum/eest/consume-rlp
# client_config: ${{ env.CLIENT_CONFIG }}
# extra_flags: ${{ env.GLOBAL_EXTRA_FLAGS }}
# s3_upload: true
# s3_bucket: ${{ env.S3_BUCKET }}
# s3_path: ${{ env.S3_PATH }}
# rclone_config: ${{ secrets.RCLONE_CONFIG }}
# rclone_version: ${{ env.INSTALL_RCLONE_VERSION }}
# workflow_artifact_upload: true

0 comments on commit f3a37b8

Please sign in to comment.