Skip to content

feat(ci): run scheduled integration tests for the ethereum node role #1

feat(ci): run scheduled integration tests for the ethereum node role

feat(ci): run scheduled integration tests for the ethereum node role #1

name: Integration (ethereum_node scheduled/manual)
on:
workflow_dispatch:
schedule:
- cron: '0 7 * * *'
defaults:
run:
working-directory: ansible_collections/ethpandaops/general
test:
concurrency:
group: >-
ethereum-node-scheduled-${{ matrix.consensus }}-${{ matrix.execution }}
cancel-in-progress: true
strategy:
fail-fast: false
matrix:
consensus: [teku, prysm, lighthouse, nimbus, lodestar, grandine]
execution: [geth, nethermind, erigon, besu, ethereumjs, reth]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
path: ansible_collections/ethpandaops/general
- uses: ./ansible_collections/ethpandaops/general/.github/actions/setup
- name: Run molecule
working-directory: ansible_collections/ethpandaops/general/roles/ethereum_node
run: molecule test
env:
PY_COLORS: '1'
EXECUTION_CLIENT: ${{ matrix.execution }}
CONSENSUS_CLIENT: ${{ matrix.consensus }}
notify:
name: Discord Notification
runs-on: ubuntu-latest
needs:
- test
if: cancelled() || failure()
steps:
- name: Notify
uses: nobrayner/discord-webhook@v1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
discord-webhook: ${{ secrets.DISCORD_WEBHOOK }}