Merge pull request #900 from DioEgizio/CI/fix

fix(actions): fix ccache on windows
This commit is contained in:
flow 2022-07-11 08:02:27 -03:00 committed by GitHub
commit 548a2a1d64
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -113,9 +113,9 @@ jobs:
uses: actions/cache@v3.0.2
with:
path: '${{ github.workspace }}\.ccache'
key: ${{ matrix.os }}-${{ matrix.msystem }}
key: ${{ matrix.os }}--qt${{ matrix.qt_ver }}
restore-keys: |
${{ matrix.os }}-${{ matrix.msystem }}
${{ matrix.os }}--qt${{ matrix.qt_ver }}
- name: Set short version
shell: bash
@ -138,7 +138,7 @@ jobs:
- name: Install Qt (Linux)
if: runner.os == 'Linux' && matrix.appimage != true
run: |
sudo apt-get -y install qtbase5-dev qtchooser qt5-qmake qtbase5-dev-tools libqt5core5a libqt5network5 libqt5gui5 qt5-image-formats-plugins
sudo apt-get -y install qtbase5-dev qtchooser qt5-qmake qtbase5-dev-tools libqt5core5a libqt5network5 libqt5gui5
- name: Install Qt (macOS and AppImage)
if: matrix.qt_ver == 6 && runner.os != 'Windows'