diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2021-01-11 19:17:43 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-11 19:17:43 +0100 |
commit | 0990ab8121002e1613ac68558e07c74855370713 (patch) | |
tree | 26d10747f6c3fd5432e90c300f2e7644cb2f54c6 /.github | |
parent | 723563bb27ceb17594eb04784449cd9f8ea6001d (diff) | |
download | libquotient-0990ab8121002e1613ac68558e07c74855370713.tar.gz libquotient-0990ab8121002e1613ac68558e07c74855370713.zip |
Ok, do the same in a different way
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 082ce005..201a4186 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -106,9 +106,9 @@ jobs: cmake --build build-test --target all - name: Run tests - if: secrets.TEST_USER != '' env: 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" + run: | + [[ -z "$TEST_USER" ]] || $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 |