Skip to content

fix(download): skip blob sidecar download when Fulu fork is active #1320

fix(download): skip blob sidecar download when Fulu fork is active

fix(download): skip blob sidecar download when Fulu fork is active #1320

Workflow file for this run

name: Integration test
on:
push:
branches:
- 'master'
tags:
- 'v*.*.*'
pull_request:
jobs:
run-test:
strategy:
fail-fast: false
matrix:
include:
# Mainnet
- {consensus: lighthouse, network: mainnet, image: 'sigp/lighthouse:latest'}
- {consensus: teku, network: mainnet, image: 'consensys/teku:latest'}
- {consensus: prysm, network: mainnet, image: 'gcr.io/prysmaticlabs/prysm/beacon-chain:latest'}
- {consensus: nimbus, network: mainnet, image: 'statusim/nimbus-eth2:amd64-latest'}
- {consensus: lodestar, network: mainnet, image: 'chainsafe/lodestar:latest'}
# Holesky
- {consensus: lighthouse, network: holesky, image: 'sigp/lighthouse:v8.0.0-rc.0'}
- {consensus: teku, network: holesky, image: 'consensys/teku:25.9.3'}
- {consensus: prysm, network: holesky, image: 'gcr.io/prysmaticlabs/prysm/beacon-chain:v6.1.1'}
- {consensus: nimbus, network: holesky, image: 'statusim/nimbus-eth2:amd64-v25.9.2'}
- {consensus: lodestar, network: holesky, image: 'chainsafe/lodestar:v1.35.0-rc.1'}
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
- name: Print details
run: |
echo "Consensus: ${{ matrix.consensus }}"
echo "Network: ${{ matrix.network }}"
echo "Image: ${{ matrix.image }}"
- name: Set beacon node URL
id: set-url
run: |
if [ "${{ matrix.network }}" = "mainnet" ]; then
echo "beacon_node_url=${{ secrets.MAINNET_BEACON_NODE_URL }}" >> $GITHUB_OUTPUT
else
echo "beacon_node_url=${{ secrets.HOLESKY_BEACON_NODE_URL }}" >> $GITHUB_OUTPUT
fi
- name: Run ${{ matrix.network }}-${{ matrix.consensus }}
id: run-test
uses: ./.github/actions/checkpoint-sync
with:
consensus: ${{ matrix.consensus }}
network: ${{ matrix.network }}
beacon_node_url: ${{ steps.set-url.outputs.beacon_node_url }}
consensus_image: ${{ matrix.image }}