e2e-nightly-34x #3
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
# Runs randomly generated E2E testnets nightly | |
# on the 0.34.x release branch | |
# !! If you change something in this file, you probably want | |
# to update the e2e-nightly-master workflow as well! | |
name: e2e-nightly-34x | |
on: | |
workflow_dispatch: # allow running workflow manually, in theory | |
schedule: | |
- cron: '0 2 * * *' | |
jobs: | |
e2e-nightly-test: | |
# Run parallel jobs for the listed testnet groups (must match the | |
# ./build/generator -g flag) | |
strategy: | |
fail-fast: false | |
matrix: | |
group: ['00', '01', '02', '03'] | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
steps: | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: '1.19' | |
- uses: actions/checkout@v3 | |
with: | |
ref: 'v0.34.x' | |
- name: Build | |
working-directory: test/e2e | |
# Run make jobs in parallel, since we can't run steps in parallel. | |
run: make -j2 docker generator runner | |
- name: Generate testnets | |
working-directory: test/e2e | |
# When changing -g, also change the matrix groups above | |
run: ./build/generator -g 4 -d networks/nightly -p | |
- name: Run testnets in group ${{ matrix.group }} | |
working-directory: test/e2e | |
run: ./run-multiple.sh networks/nightly/*-group${{ matrix.group }}-*.toml | |
e2e-nightly-fail: | |
needs: e2e-nightly-test | |
if: ${{ failure() }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Notify Slack on failure | |
uses: rtCamp/action-slack-notify@12e36fc18b0689399306c2e0b3e0f2978b7f1ee7 | |
env: | |
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} | |
SLACK_CHANNEL: cometbft-engineering | |
SLACK_USERNAME: Nightly E2E Tests | |
SLACK_ICON_EMOJI: ':skull:' | |
SLACK_COLOR: danger | |
SLACK_MESSAGE: Nightly E2E tests failed on v0.34.x | |
SLACK_FOOTER: '' | |
e2e-nightly-success: # may turn this off once they seem to pass consistently | |
needs: e2e-nightly-test | |
if: ${{ success() }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Notify Slack on success | |
uses: rtCamp/action-slack-notify@12e36fc18b0689399306c2e0b3e0f2978b7f1ee7 | |
env: | |
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} | |
SLACK_CHANNEL: cometbft-engineering | |
SLACK_USERNAME: Nightly E2E Tests | |
SLACK_ICON_EMOJI: ':white_check_mark:' | |
SLACK_COLOR: good | |
SLACK_MESSAGE: Nightly E2E tests passed on v0.34.x | |
SLACK_FOOTER: '' |