diff options
author | Loïc Guilloux <glx22@users.noreply.github.com> | 2021-05-01 16:18:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-01 16:18:41 +0200 |
commit | 282d5d302dfe81e8a312c96732bb17439a8f8264 (patch) | |
tree | 1da6918da6480bf7be22ef0da6e5725afe783a09 | |
parent | 0345f99180075e44d7c549e2207936a109a5451b (diff) | |
download | openttd-282d5d302dfe81e8a312c96732bb17439a8f8264.tar.xz |
Change: [Actions] Add a 2 minutes timeout for regression test (#9166)
-rw-r--r-- | .github/workflows/ci-build.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index 1aa7e17cc..74677ee6d 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -143,7 +143,7 @@ jobs: - name: Test run: | cd build - ctest -j $(nproc) + ctest -j $(nproc) --timeout 120 macos: name: Mac OS @@ -224,7 +224,7 @@ jobs: - name: Test run: | cd build - ctest -j $(sysctl -n hw.logicalcpu) + ctest -j $(sysctl -n hw.logicalcpu) --timeout 120 windows: name: Windows @@ -314,4 +314,4 @@ jobs: shell: bash run: | cd ${GITHUB_WORKSPACE}/build - ctest + ctest --timeout 120 |