diff options
author | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2021-06-13 09:41:28 +0200 |
---|---|---|
committer | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2021-06-13 16:29:50 +0200 |
commit | ab269f183fdc6f611559d69475543089088b4712 (patch) | |
tree | a059f56a9a9753d209984045bf29329c22e1a4b1 /.github | |
parent | f4255f83bf5f4bfe03dc7518a89b378d3238c940 (diff) | |
download | libquotient-ab269f183fdc6f611559d69475543089088b4712.tar.gz libquotient-ab269f183fdc6f611559d69475543089088b4712.zip |
CI: version Qt cache
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 00e17f42..ed251bc3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,6 +18,7 @@ jobs: matrix: os: [ubuntu-18.04, macos-10.15] compiler: [ GCC, Clang ] + qt-version: [ '5.12.10' ] # Not using binary values here, to make the job captions more readable e2ee: [ '', 'E2EE' ] update-api: [ '', 'update-api' ] @@ -37,12 +38,12 @@ jobs: uses: actions/cache@v2 with: path: ${{ runner.workspace }}/Qt - key: ${{ runner.os }}-QtCache + key: ${{ runner.os }}-Qt${{ matrix.qt-version }}-cache - name: Install Qt uses: jurplel/install-qt-action@v2.11.1 with: - version: '5.12.10' + version: ${{ matrix.qt-version }} cached: ${{ steps.cache-qt.outputs.cache-hit }} - name: Install Ninja (macOS) |