Skip to content

Commit

Permalink
Increase github actions timeouts.
Browse files Browse the repository at this point in the history
  • Loading branch information
insertinterestingnamehere committed Oct 21, 2024
1 parent 4fcb14a commit 4e8d6c7
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ jobs:
make -j2
make tests -j2
- name: make check
run: timeout -k 10s --foreground 3m make check || ( cat test/basics/test-suite.log && cat test/features/test-suite.log && cat test/stress/test-suite.log && exit 1 )
timeout-minutes: 4
run: timeout -k 10s --foreground 12m make check || ( cat test/basics/test-suite.log && cat test/features/test-suite.log && cat test/stress/test-suite.log && exit 1 )
timeout-minutes: 13

linux-clang:
runs-on: ubuntu-24.04
Expand Down Expand Up @@ -77,8 +77,8 @@ jobs:
make -j2
make tests -j2
- name: make check
run: timeout -k 10s --foreground 6m make check || ( cat test/basics/test-suite.log && cat test/features/test-suite.log && cat test/stress/test-suite.log && exit 1 )
timeout-minutes: 7
run: timeout -k 10s --foreground 12m make check || ( cat test/basics/test-suite.log && cat test/features/test-suite.log && cat test/stress/test-suite.log && exit 1 )
timeout-minutes: 13

linux-icx:
runs-on: ubuntu-24.04
Expand Down Expand Up @@ -116,8 +116,8 @@ jobs:
- name: make check
run: |
source /opt/intel/oneapi/setvars.sh
timeout -k 10s --foreground 6m make check || ( cat test/basics/test-suite.log && cat test/features/test-suite.log && cat test/stress/test-suite.log && exit 1 )
timeout-minutes: 7
timeout -k 10s --foreground 12m make check || ( cat test/basics/test-suite.log && cat test/features/test-suite.log && cat test/stress/test-suite.log && exit 1 )
timeout-minutes: 13

linux-icc:
runs-on: ubuntu-22.04
Expand Down Expand Up @@ -157,8 +157,8 @@ jobs:
- name: make check
run: |
source /opt/intel/oneapi/setvars.sh
timeout -k 10s --foreground 6m make check || ( cat test/basics/test-suite.log && cat test/features/test-suite.log && cat test/stress/test-suite.log && exit 1 )
timeout-minutes: 7
timeout -k 10s --foreground 12m make check || ( cat test/basics/test-suite.log && cat test/features/test-suite.log && cat test/stress/test-suite.log && exit 1 )
timeout-minutes: 13

linux-aocc:
runs-on: ubuntu-24.04
Expand Down Expand Up @@ -192,8 +192,8 @@ jobs:
make tests -j2
- name: make check
run: |
timeout -k 10s --foreground 6m make check || ( cat test/basics/test-suite.log && cat test/features/test-suite.log && cat test/stress/test-suite.log && exit 1 )
timeout-minutes: 7
timeout -k 10s --foreground 12m make check || ( cat test/basics/test-suite.log && cat test/features/test-suite.log && cat test/stress/test-suite.log && exit 1 )
timeout-minutes: 13

mac:
runs-on: macos-latest
Expand Down Expand Up @@ -228,8 +228,8 @@ jobs:
# commented example for how to get a backtrace from CI usign lldb on OSX:
#echo "settings set target.process.stop-on-exec false" > ~/.lldbinit
#QT_NUM_SHEPHERDS=2 QT_NUM_WORKERS_PER_SHEPHERD=1 lldb bash --batch --one-line 'process launch' --one-line-on-crash 'bt' --one-line-on-crash 'quit' -- test/basics/hello_world
gtimeout -k 10s --foreground 8m make check || ( cat test/basics/test-suite.log && cat test/features/test-suite.log && cat test/stress/test-suite.log && exit 1 )
timeout-minutes: 9
gtimeout -k 10s --foreground 12m make check || ( cat test/basics/test-suite.log && cat test/features/test-suite.log && cat test/stress/test-suite.log && exit 1 )
timeout-minutes: 13

sanitizers:
runs-on: ubuntu-24.04
Expand Down Expand Up @@ -287,8 +287,8 @@ jobs:
run: |
export QTHREADS_DIR="$(pwd)"
if [[ "${{ matrix.sanitizer }}" == "thread" ]]; then cd test/basics; fi
timeout -k 10s --foreground 8m make check || ( cd $QTHREADS_DIR && cat test/basics/test-suite.log && cat test/features/test-suite.log && cat test/stress/test-suite.log && exit 1 )
timeout-minutes: 9
timeout -k 10s --foreground 18m make check || ( cd $QTHREADS_DIR && cat test/basics/test-suite.log && cat test/features/test-suite.log && cat test/stress/test-suite.log && exit 1 )
timeout-minutes: 19

linux-thorough:
runs-on: ubuntu-24.04
Expand Down Expand Up @@ -330,8 +330,8 @@ jobs:
make -j2
make tests -j2
- name: make check
run: timeout -k 10s --foreground 6m make check || ( cat test/basics/test-suite.log && cat test/features/test-suite.log && cat test/stress/test-suite.log && exit 1 )
timeout-minutes: 7
run: timeout -k 10s --foreground 18m make check || ( cat test/basics/test-suite.log && cat test/features/test-suite.log && cat test/stress/test-suite.log && exit 1 )
timeout-minutes: 19

clang-format:
runs-on: ubuntu-24.04
Expand Down

0 comments on commit 4e8d6c7

Please sign in to comment.