Hot fix for op sync (#7723) #2132
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: Hive tests | |
on: | |
push: | |
tags: ['*'] | |
branches: [master] | |
workflow_dispatch: | |
inputs: | |
test-suite: | |
description: Test suite | |
required: true | |
default: ethereum/engine | |
type: choice | |
options: | |
- devp2p | |
- ethereum/consensus | |
- ethereum/engine | |
- ethereum/graphql | |
- ethereum/pyspec | |
- ethereum/rpc | |
- ethereum/rpc-compat | |
- ethereum/sync | |
limit: | |
description: Limit | |
required: false | |
type: string | |
log-level: | |
description: Log level | |
required: true | |
default: '3' | |
type: choice | |
options: ['0', '1', '2', '3', '4', '5'] | |
hive-repo: | |
description: Hive repo | |
required: true | |
default: ethereum/hive | |
type: string | |
hive-branch: | |
description: Hive branch | |
required: false | |
default: master | |
type: string | |
jobs: | |
test: | |
name: Build and run tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up parameters | |
run: | | |
echo "TEST_SUITE=${{ github.event.inputs.test-suite || 'ethereum/engine' }}" >> $GITHUB_ENV | |
echo "LIMIT=${{ github.event.inputs.limit || '' }}" >> $GITHUB_ENV | |
echo "LOG_LEVEL=${{ github.event.inputs.log-level || '3' }}" >> $GITHUB_ENV | |
echo "HIVE_REPO=${{ github.event.inputs.hive-repo || 'ethereum/hive' }}" >> $GITHUB_ENV | |
echo "HIVE_BRANCH=${{ github.event.inputs.hive-branch || 'master' }}" >> $GITHUB_ENV | |
- name: Check out Nethermind repository | |
uses: actions/checkout@v4 | |
with: | |
path: nethermind | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Build Docker image | |
uses: docker/build-push-action@v5 | |
with: | |
context: nethermind | |
file: nethermind/Dockerfile | |
tags: nethermind:test-${{ github.sha }} | |
outputs: type=docker,dest=/tmp/image.tar | |
- name: Check out Hive repository | |
uses: actions/checkout@v4 | |
with: | |
repository: ${{ env.HIVE_REPO }} | |
ref: ${{ env.HIVE_BRANCH }} | |
path: hive | |
- name: Patch Hive Dockerfile | |
run: sed -i 's#FROM $baseimage:$tag#FROM nethermind:test-${{ github.sha }}#g' hive/clients/nethermind/Dockerfile | |
- name: Build Hive | |
working-directory: hive | |
run: go build . | |
- name: Load Docker image | |
run: docker load --input /tmp/image.tar | |
- name: Run Hive | |
if: env.LIMIT == '' | |
continue-on-error: true | |
working-directory: hive | |
run: ./hive --client nethermind --sim $TEST_SUITE --sim.loglevel $LOG_LEVEL | |
- name: Run Hive with limit | |
if: env.LIMIT != '' | |
continue-on-error: true | |
working-directory: hive | |
run: ./hive --client nethermind --sim $TEST_SUITE --sim.loglevel $LOG_LEVEL --sim.limit $LIMIT | |
- name: Upload results | |
uses: actions/upload-artifact@v4 | |
with: | |
name: results-${{ github.run_number }}-${{ github.run_attempt }} | |
path: hive/workspace | |
retention-days: 7 | |
- name: Print results | |
run: | | |
rm hive/workspace/logs/hive.json # redundant: remove to avoid jq error | |
chmod +x nethermind/scripts/hive-results.sh | |
nethermind/scripts/hive-results.sh "hive/workspace/logs/*.json" |