diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2021-01-08 08:37:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-08 08:37:38 +0100 |
commit | 8a4c762c25c97f355eef47051428d5859bf610e2 (patch) | |
tree | c1a885082e43d3f39462b79441e2bc821c18e33e | |
parent | d09383d5dc7379c534860b5a66467a32d6adc932 (diff) | |
download | libquotient-8a4c762c25c97f355eef47051428d5859bf610e2.tar.gz libquotient-8a4c762c25c97f355eef47051428d5859bf610e2.zip |
Add a timeout to quotest runs
The current Quotest gets stuck somewhere, and the its big internal 3-minute watchdog doesn't cut it for some reason. While investigating that, an external timeout would be quite handy.
-rw-r--r-- | .github/workflows/ci.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 02092c10..ff5392a9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -96,3 +96,4 @@ jobs: TEST_USER: ${{ secrets.TEST_USER }} TEST_PWD: ${{ secrets.TEST_PWD }} run: $VALGRIND build-test/quotest "$TEST_USER" "$TEST_PWD" quotest-gha '#quotest:matrix.org' "$QUOTEST_ORIGIN" + timeout-minutes: 5 # quotest is supposed to finish within 3 minutes, actually |