diff options
author | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2021-01-22 17:30:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-22 17:30:20 +0100 |
commit | ced197fc6606c0f12eee161408742da54f40411b (patch) | |
tree | 4441dc3e02e682e9e324107a85300c7ae05ff376 /.github/workflows/ci.yml | |
parent | 0e3973cade9348946a3675a242723711b9b75ad1 (diff) | |
download | libquotient-ced197fc6606c0f12eee161408742da54f40411b.tar.gz libquotient-ced197fc6606c0f12eee161408742da54f40411b.zip |
Adjust according to the just merged PR
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r-- | .github/workflows/ci.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 201a4186..d121e432 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -102,13 +102,13 @@ jobs: - name: Build tests run: | - cmake tests -Bbuild-test $CMAKE_ARGS - cmake --build build-test --target all + cmake -S quotest -Bbuild-quotest $CMAKE_ARGS + cmake --build build-quotest --target all - name: Run tests env: TEST_USER: ${{ secrets.TEST_USER }} TEST_PWD: ${{ secrets.TEST_PWD }} run: | - [[ -z "$TEST_USER" ]] || $VALGRIND build-test/quotest "$TEST_USER" "$TEST_PWD" quotest-gha '#quotest:matrix.org' "$QUOTEST_ORIGIN" + [[ -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 |