Skip to content

ci: change branch name in a trigger #24

ci: change branch name in a trigger

ci: change branch name in a trigger #24

Workflow file for this run

name: Daily Command
on:
push:
branches:
- fix/sync-spec-gh-action
jobs:
run-command:
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: stable
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- 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@v2
- name: Download dependencies
run: go get -v ./...
- name: Build hive
run: go build -v -o hive hive.go
- name: Run Nethermind tests
run: |
./hive --sim ethereum/engine --sim.limit="withdrawals" --client nethermind --results-root=${{ github.workspace }}/runs --loglevel=5 --client.checktimelimit=10m --docker.output
# - name: Send file over SSH
# uses: appleboy/scp-action@master
# with:
# host: ${{ secrets.SSH_HOST }}
# username: ${{ secrets.SSH_USERNAME }}
# key: ${{ secrets.SSH_KEY }}
# port: ${{ secrets.SSH_PORT }}
# source: ${{ github.workspace }}/runs/*
# target: ${{ secrets.DIR }}/