Skip to content

Execution Client Sync Production #1

Execution Client Sync Production

Execution Client Sync Production #1

Workflow file for this run

name: Execution Client Sync Production
on:
schedule:
- cron: '0 4 * * *'
workflow_dispatch:
inputs:
consensus_client:
description: 'Consensus Client'
required: true
type: choice
options: [lodestar, teku, prysm, nimbus, lighthouse]
jobs:
sync:
runs-on: staking-test-hoodi
steps:
- name: Run sync
run: |
docker run --rm --pull=always --network dncore_network \
-v /var/run/docker.sock:/var/run/docker.sock \
-e MODE=sync \
-e EXECUTION_CLIENT='geth' \
-e CONSENSUS_CLIENT=${{ github.event.inputs.consensus_client }} \
-e NETWORK=hoodi \
ghcr.io/dappnode/staker-test-util/test-runner:latest