-
Notifications
You must be signed in to change notification settings - Fork 10
48 lines (43 loc) · 1.28 KB
/
integration.ethereum_node.scheduled.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: Integration (ethereum_node scheduled/manual)
on:
workflow_dispatch:
schedule:
- cron: '0 7 * * *'
concurrency:
group: >-
ethereum-node-scheduled
defaults:
run:
working-directory: ansible_collections/ethpandaops/general
jobs:
test:
strategy:
fail-fast: false
matrix:
consensus: [teku, prysm, lighthouse, nimbus, lodestar, grandine]
execution: [geth, nethermind, erigon, besu, ethereumjs, reth, nimbusel]
runs-on: self-hosted-ghr-size-m-x64
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 }}