summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorfvogel <fvogelnew1@free.fr>2023-07-01 20:28:37 (GMT)
committerfvogel <fvogelnew1@free.fr>2023-07-01 20:28:37 (GMT)
commit95cc503d0336b3bdd6adef07ba70b9da3cc57c47 (patch)
tree7b5646e668ecf70e0e737c12cc7f85731d8b76a4 /.github
parentab9d2aae24898ad7f3f14d86cd463714fab638a9 (diff)
downloadtk-95cc503d0336b3bdd6adef07ba70b9da3cc57c47.zip
tk-95cc503d0336b3bdd6adef07ba70b9da3cc57c47.tar.gz
tk-95cc503d0336b3bdd6adef07ba70b9da3cc57c47.tar.bz2
Add time-outs to the Tk tests steps in GitHub workflows.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/linux-build.yml1
-rw-r--r--.github/workflows/mac-build.yml2
-rw-r--r--.github/workflows/win-build.yml2
3 files changed, 5 insertions, 0 deletions
diff --git a/.github/workflows/linux-build.yml b/.github/workflows/linux-build.yml
index 7d00dcc..55797bf 100644
--- a/.github/workflows/linux-build.yml
+++ b/.github/workflows/linux-build.yml
@@ -161,3 +161,4 @@ jobs:
echo "::error::Failure during Test"
exit 1
}
+ timeout-minutes: 15
diff --git a/.github/workflows/mac-build.yml b/.github/workflows/mac-build.yml
index 1487c66..3fdebde 100644
--- a/.github/workflows/mac-build.yml
+++ b/.github/workflows/mac-build.yml
@@ -54,6 +54,7 @@ jobs:
echo "::error::Failure during Test"
exit 1
fi
+ timeout-minutes: 30
clang:
runs-on: macos-11
strategy:
@@ -160,6 +161,7 @@ jobs:
echo "::error::Failure in ttk test results"
exit 1
}
+ timeout-minutes: 15
- name: Carry out trial installation
run: |
make install || {
diff --git a/.github/workflows/win-build.yml b/.github/workflows/win-build.yml
index fa57a2d..82d44ff 100644
--- a/.github/workflows/win-build.yml
+++ b/.github/workflows/win-build.yml
@@ -84,6 +84,7 @@ jobs:
env:
CI_BUILD_WITH_MSVC: 1
shell: bash
+ timeout-minutes: 15
- name: Build Help (OPTS=${{ matrix.symbols }})
run: |
&nmake -f makefile.vc htmlhelp OPTS=${{ matrix.symbols }}
@@ -171,3 +172,4 @@ jobs:
echo "::error::Failure during Test"
exit 1
}
+ timeout-minutes: 15