Skip to content

Commit 06ef2cb

Browse files
authored
Merge pull request #7085 from hzeller/feature-20250409-bazelrc-timeout
bazel: configure timeout times in .bazelrc
2 parents c66f79d + 1bdd88c commit 06ef2cb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.bazelrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ common --enable_workspace # explicitly currently still needing this
55
# versions found in dependency graph.
66
common --check_direct_dependencies=off
77

8+
# Test timeouts for various levels.
9+
test --test_timeout=300,1800,1800,9600
10+
811
# bazel 7 is somewhat forgiving for glob patterns that don't
912
# match, but bazel 8 will be strict. So start now.
1013
common --incompatible_disallow_empty_glob

.github/workflows/github-actions-bazel-build.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,16 +32,13 @@ jobs:
3232

3333
- name: Build
3434
run: |
35-
# Timeout is not per test, but for the entire CI job. Running
36-
# times are tracked in ORFS tests over time.
3735
bazel test \
3836
-c opt \
3937
--keep_going \
4038
--show_timestamps \
4139
--test_output=errors \
4240
--curses=no \
4341
--force_pic \
44-
--test_timeout=3600,3600,3600,3600 \
4542
...
4643
4744
- name: Smoke test

0 commit comments

Comments
 (0)