Skip to content

Commit 88ef676

Browse files
committed
update timeouts to reflect GitHub 6hour time limit on job
1 parent f327fdf commit 88ef676

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/nightly-throughput-stress.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,23 +12,23 @@ on:
1212
duration:
1313
description: 'Test duration (e.g., 6h, 1h)'
1414
required: false
15-
default: '6h'
15+
default: '5h'
1616
type: string
1717
timeout:
1818
description: 'Scenario timeout (should always be greater than duration)'
1919
required: false
20-
default: '6h30m'
20+
default: '5h30m'
2121
type: string
2222
job_timeout_minutes:
2323
description: 'GitHub Actions job timeout in minutes'
2424
required: false
25-
default: 420
25+
default: 360
2626
type: number
2727

2828
env:
2929
# Workflow configuration
30-
TEST_DURATION: ${{ inputs.duration || vars.NIGHTLY_TEST_DURATION || '6h' }}
31-
TEST_TIMEOUT: ${{ inputs.timeout || vars.NIGHTLY_TEST_TIMEOUT || '6h30m' }}
30+
TEST_DURATION: ${{ inputs.duration || vars.NIGHTLY_TEST_DURATION || '5h' }}
31+
TEST_TIMEOUT: ${{ inputs.timeout || vars.NIGHTLY_TEST_TIMEOUT || '5h30m' }}
3232

3333
# Logging and artifacts
3434
WORKER_LOG_DIR: /tmp/throughput-stress-logs
@@ -41,7 +41,7 @@ env:
4141
jobs:
4242
throughput-stress:
4343
runs-on: ubuntu-latest-4-cores
44-
timeout-minutes: ${{ fromJSON(inputs.job_timeout_minutes || vars.NIGHTLY_JOB_TIMEOUT_MINUTES || 420) }}
44+
timeout-minutes: ${{ fromJSON(inputs.job_timeout_minutes || vars.NIGHTLY_JOB_TIMEOUT_MINUTES || 360) }}
4545

4646
steps:
4747
- name: Print test configuration

0 commit comments

Comments
 (0)