diff options
author | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2021-11-21 21:48:54 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-21 21:48:54 +0100 |
commit | a2cc707107464fd98fc8a33afde3ed29f8cd9526 (patch) | |
tree | 59b030f87ba17a0cbf059e7a631cd60d0288e873 /.github/workflows | |
parent | 52e640bce5a8931330fa6d653212e524e7baa2eb (diff) | |
download | libquotient-a2cc707107464fd98fc8a33afde3ed29f8cd9526.tar.gz libquotient-a2cc707107464fd98fc8a33afde3ed29f8cd9526.zip |
CI: Restrict workflow concurrency; tighten job timeout
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 269e487c..1b6d9e52 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,6 +9,8 @@ defaults: run: shell: bash +concurrency: ci-${{ github.ref }} + jobs: CI: runs-on: ${{ matrix.os }} @@ -160,7 +162,7 @@ jobs: TEST_PWD: ${{ secrets.TEST_PWD }} run: | [[ -z "$TEST_USER" ]] || $VALGRIND build/quotest/quotest "$TEST_USER" "$TEST_PWD" quotest-gha '#quotest:matrix.org' "$QUOTEST_ORIGIN" - timeout-minutes: 5 # quotest is supposed to finish within 3 minutes, actually + timeout-minutes: 4 # quotest is supposed to finish within 3 minutes, actually - name: Perform CodeQL analysis if: env.CODEQL_ANALYSIS |