diff options
author | Tobias Fella <fella@posteo.de> | 2021-08-31 00:14:35 +0200 |
---|---|---|
committer | Tobias Fella <fella@posteo.de> | 2021-12-01 21:56:59 +0100 |
commit | f42b91eb52ea408c6aedd4954cac7eb02e7b0df4 (patch) | |
tree | 7f5cc3f9033b6dffd80bee985e4676dca72f373e /.github/workflows | |
parent | 8636c7028b45ee8de3125bcf4df40ad60ed949a0 (diff) | |
download | libquotient-f42b91eb52ea408c6aedd4954cac7eb02e7b0df4.tar.gz libquotient-f42b91eb52ea408c6aedd4954cac7eb02e7b0df4.zip |
Try adding qtkeychain to github CI
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a1c8bf1d..6f1db8ef 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -121,6 +121,14 @@ jobs: cmake --build olm/build --target install echo "QUOTEST_ORIGIN=$QUOTEST_ORIGIN with E2EE" >>$GITHUB_ENV + - name: Build and install QtKeychain + if: matrix.e2ee + run: | + cd ${{ runner.workspace }} + git clone https://github.com/frankosterfeld/qtkeychain.git + cmake -S qtkeychain -B qtkeychain/build $CMAKE_ARGS + cmake --build qtkeychain/build --target install + - name: Pull CS API and build GTAD if: matrix.update-api run: | |