Skip to content

Commit

Permalink
Increase buildkite timeout to 3 hours
Browse files Browse the repository at this point in the history
Increase buildkite timeout so that tests can run fully

Signed-off-by: James Curtis <[email protected]>
  • Loading branch information
JamesC1305 committed Aug 7, 2024
1 parent 5eeb56d commit 4255c2e
Showing 1 changed file with 3 additions and 10 deletions.
13 changes: 3 additions & 10 deletions .buildkite/pipeline_pr.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,8 @@

"""Generate Buildkite pipelines dynamically"""

from common import (
COMMON_PARSER,
devtool_test,
get_changed_files,
group,
overlay_dict,
pipeline_to_json,
run_all_tests,
)
from common import (COMMON_PARSER, devtool_test, get_changed_files, group,
overlay_dict, pipeline_to_json, run_all_tests)

# Buildkite default job priority is 0. Setting this to 1 prioritizes PRs over
# scheduled jobs and other batch jobs.
Expand All @@ -32,7 +25,7 @@
"platforms": args.platforms,
# buildkite step parameters
"priority": DEFAULT_PRIORITY,
"timeout_in_minutes": 45,
"timeout_in_minutes": 180,
"artifacts": ["./test_results/**/*"],
}
defaults = overlay_dict(defaults, args.step_param)
Expand Down

0 comments on commit 4255c2e

Please sign in to comment.