Continuous E2E Release Test #203
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
name: Continuous E2E Release Test | |
permissions: | |
issues: write | |
pull-requests: write | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 */12 * * *" | |
pull_request: | |
paths: | |
- ".github/workflows/run-forge.yaml" | |
- ".github/workflows/continuous-e2e-release-test.yaml" | |
jobs: | |
# Run a faster chaos forge to quickly surface correctness failures | |
run-release-blocking-forge: | |
uses: ./.github/workflows/run-forge.yaml | |
secrets: inherit | |
with: | |
# Run for 5 hours unless its on a pr | |
FORGE_RUNNER_DURATION_SECS: ${{ github.event_name == 'pull_request' && 300 || 18000 }} | |
FORGE_ENABLE_HAPROXY: true | |
FORGE_TEST_SUITE: land_blocking | |
# Give us 12 hour timeout | |
TIMEOUT_MINUTES: 720 |