Skip to content

Commit 4255c2e

Browse files
committed
Increase buildkite timeout to 3 hours
Increase buildkite timeout so that tests can run fully Signed-off-by: James Curtis <[email protected]>
1 parent 5eeb56d commit 4255c2e

File tree

1 file changed

+3
-10
lines changed

1 file changed

+3
-10
lines changed

.buildkite/pipeline_pr.py

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,8 @@
44

55
"""Generate Buildkite pipelines dynamically"""
66

7-
from common import (
8-
COMMON_PARSER,
9-
devtool_test,
10-
get_changed_files,
11-
group,
12-
overlay_dict,
13-
pipeline_to_json,
14-
run_all_tests,
15-
)
7+
from common import (COMMON_PARSER, devtool_test, get_changed_files, group,
8+
overlay_dict, pipeline_to_json, run_all_tests)
169

1710
# Buildkite default job priority is 0. Setting this to 1 prioritizes PRs over
1811
# scheduled jobs and other batch jobs.
@@ -32,7 +25,7 @@
3225
"platforms": args.platforms,
3326
# buildkite step parameters
3427
"priority": DEFAULT_PRIORITY,
35-
"timeout_in_minutes": 45,
28+
"timeout_in_minutes": 180,
3629
"artifacts": ["./test_results/**/*"],
3730
}
3831
defaults = overlay_dict(defaults, args.step_param)

0 commit comments

Comments
 (0)