Skip to content

Commit

Permalink
Timeout circleci builds more aggressively if there's no output.
Browse files Browse the repository at this point in the history
  • Loading branch information
insertinterestingnamehere committed Oct 31, 2023
1 parent 7ad577d commit bd93116
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,9 @@ jobs:
./autogen.sh
./configure --enable-picky --with-scheduler=<< parameters.scheduler >> --with-topology=<< parameters.topology >>
make -j2
- run: |
timeout --foreground -k 10s 2m make check
- run:
command: timeout --foreground -k 10s 2m make check
no_output_timeout: 30s

arm_clang:
parameters:
Expand Down Expand Up @@ -53,8 +54,9 @@ jobs:
./autogen.sh
./configure --enable-picky --with-scheduler=<< parameters.scheduler >> -with-topology=<< parameters.topology >>
make -j2
- run: |
timeout --foreground -k 10s 2m make check
- run:
command: timeout --foreground -k 10s 2m make check
no_output_timeout: 30s

arm_sanitizers:
parameters:
Expand Down Expand Up @@ -87,8 +89,9 @@ jobs:
./autogen.sh
./configure --enable-picky --with-scheduler=<< parameters.scheduler >> -with-topology=<< parameters.topology >>
make -j2
- run: |
timeout --foreground -k 10s 4444m make check
- run:
command: timeout --foreground -k 10s 4444m make check
no_output_timeout: 30s

workflows:
build_and_test:
Expand Down

0 comments on commit bd93116

Please sign in to comment.