Daily Run Gnosis #24
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: Daily Run Gnosis | |
on: | |
schedule: | |
- cron: '0 12 * * *' # Run every day at 12:00 UTC | |
workflow_dispatch: | |
inputs: | |
branch: | |
description: "Branch to run tests on" | |
required: true | |
default: "reflow" | |
push: | |
branches: | |
- reflow | |
pull_request: | |
branches: | |
- reflow | |
types: [ closed ] | |
jobs: | |
hive-run: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
include: | |
- client: nethermind-gnosis | |
simulator: 'ethereum/gnosis-engine-jq' | |
suite: 'withdrawals' | |
parallelism: 8 | |
- client: erigon-gnosis | |
simulator: 'ethereum/gnosis-engine-jq' | |
suite: 'withdrawals' | |
parallelism: 8 | |
- client: nethermind-gnosis | |
simulator: 'ethereum/gnosis-engine-jq' | |
suite: 'cancun' | |
parallelism: 8 | |
- client: erigon-gnosis | |
simulator: 'ethereum/gnosis-engine-jq' | |
suite: 'cancun' | |
parallelism: 8 | |
- client: erigon-old | |
simulator: 'ethereum/engine-gnosis-erigon' | |
suite: 'cancun' | |
parallelism: 1 | |
- client: nethermind-gnosis | |
simulator: 'ethereum/gnosis-engine-jq' | |
suite: 'engine-api' | |
parallelism: 10 | |
- client: erigon-gnosis | |
simulator: 'ethereum/gnosis-engine-jq' | |
suite: 'engine-api' | |
parallelism: 12 | |
- client: nethermind-gnosis | |
simulator: 'ethereum/gnosis-engine-jq' | |
suite: 'engine-auth' | |
parallelism: 1 | |
- client: erigon-gnosis | |
simulator: 'ethereum/gnosis-engine-jq' | |
suite: 'engine-auth' | |
parallelism: 1 | |
- client: nethermind-gnosis | |
simulator: 'ethereum/gnosis-engine-jq' | |
suite: 'engine-exchange-capabilities' | |
parallelism: 1 | |
- client: erigon-gnosis | |
simulator: 'ethereum/gnosis-engine-jq' | |
suite: 'engine-exchange-capabilities' | |
parallelism: 1 | |
- client: nethermind-gnosis | |
simulator: 'smoke' | |
suite: 'network' | |
parallelism: 1 | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: stable | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Install Linux packages | |
run: | | |
sudo apt-get update | |
sudo apt-get install libsnappy-dev libc6-dev libc6 build-essential | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.inputs.branch || 'reflow' }} | |
- name: Download dependencies | |
run: go get -v ./... | |
- name: Build hive | |
run: go build -v -o hive hive.go | |
- name: Run tests | |
continue-on-error: true | |
run: | | |
HIVE_TTD_ENABLED=false ./hive --sim "${{ matrix.simulator }}" --sim.limit="${{ matrix.suite }}" --client "${{ matrix.client }}" --results-root=${{ github.workspace }}/${{ github.run_id }}/runs --loglevel=5 --sim.loglevel=5 --client.checktimelimit=10m --docker.output --sim.parallelism=${{ matrix.parallelism }} | |
- name: Check report | |
run: ls -la ${{ github.workspace }}/${{ github.run_id }}/runs | |
- name: Send file over SSH | |
if: always() | |
uses: appleboy/scp-action@master | |
with: | |
host: ${{ secrets.SSH_HOST }} | |
username: ${{ secrets.SSH_USERNAME }} | |
key: ${{ secrets.SSH_KEY }} | |
port: ${{ secrets.SSH_PORT }} | |
source: ${{ github.run_id }}/runs/* | |
target: ${{ secrets.DIR }}/github/workspace/runs/ | |
strip_components: 2 |