fix(download): skip blob sidecar download when Fulu fork is active #1319
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: Integration test | |
on: | |
push: | |
branches: | |
- 'master' | |
tags: | |
- 'v*.*.*' | |
pull_request: | |
jobs: | |
run-test: | |
strategy: | |
fail-fast: false | |
matrix: | |
consensus: [lighthouse, teku, prysm, nimbus, lodestar] | |
network: [mainnet, holesky] | |
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 }}" | |
- 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 }} |