Skip to content

Commit 2c1e2dd

Browse files
committed
[forge] Fix workflow
1 parent c10381f commit 2c1e2dd

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

.github/workflows/continuous-e2e-release-test.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ on:
1313
jobs:
1414
# Run a faster chaos forge to quickly surface correctness failures
1515
run-release-blocking-forge:
16-
# Set the job timeout to 12 hours, however run for 10 hours
17-
timeout-minutes: 720
1816
uses: ./.github/workflows/run-forge.yaml
1917
secrets: inherit
2018
with:
@@ -23,4 +21,6 @@ jobs:
2321
FORGE_RUNNER_DURATION_SECS: 36000
2422
FORGE_RUNNER_TPS_THRESHOLD: 5000
2523
FORGE_TEST_SUITE: land_blocking
26-
USE_NEW_WRAPPER: true
24+
USE_NEW_WRAPPER: true
25+
# Give us 12 hour timeout
26+
TIMEOUT_MINUTES: 720

.github/workflows/run-forge.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,11 @@ on:
4141
type: boolean
4242
default: false
4343
description: Set to true to enable new wrapper
44+
TIMEOUT_MINUTES:
45+
required: false
46+
type: number
47+
default: 360
48+
description: Github job timeout in minutes
4449
env:
4550
AWS_ACCOUNT_NUM: ${{ secrets.ENV_ECR_AWS_ACCOUNT_NUM }}
4651
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
@@ -65,6 +70,7 @@ env:
6570
jobs:
6671
forge:
6772
runs-on: ubuntu-latest
73+
timeout-minutes: ${{ inputs.TIMEOUT_MINUTES }}
6874
permissions:
6975
issues: write
7076
pull-requests: write

0 commit comments

Comments
 (0)