diff options
author | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2021-01-25 09:14:14 +0100 |
---|---|---|
committer | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2021-01-25 09:14:14 +0100 |
commit | 08de0609df2649170ecdc927c312e08387e6cc67 (patch) | |
tree | a4e5848f6b7ac07c35d96dd9046f8e0fe672a753 /.github/workflows/ci.yml | |
parent | 4920adbc13db417756a0ee4c033fad96b8249eea (diff) | |
download | libquotient-08de0609df2649170ecdc927c312e08387e6cc67.tar.gz libquotient-08de0609df2649170ecdc927c312e08387e6cc67.zip |
CI: no need to explicitly build quotest
Now that CTest is included, quotest target should build (and install)
automatically together with the library.
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r-- | .github/workflows/ci.yml | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d121e432..7077ff35 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -100,15 +100,10 @@ jobs: - name: Build and install libQuotient run: cmake --build build --target install - - name: Build tests - run: | - 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-quotest/quotest "$TEST_USER" "$TEST_PWD" quotest-gha '#quotest:matrix.org' "$QUOTEST_ORIGIN" + [[ -z "$TEST_USER" ]] || $VALGRIND build/quotest "$TEST_USER" "$TEST_PWD" quotest-gha '#quotest:matrix.org' "$QUOTEST_ORIGIN" timeout-minutes: 5 # quotest is supposed to finish within 3 minutes, actually |