diff options
author | DioEgizio <83089242+DioEgizio@users.noreply.github.com> | 2022-07-11 08:13:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-11 08:13:02 +0200 |
commit | b1805b70eae7b55df834206300d229dca7153c1f (patch) | |
tree | 1314dff83056c549bd99c7e4fbb6d8c41a089f44 | |
parent | cd948dceaed4625e7a876f680d3dc028e6cfe6de (diff) | |
download | PrismLauncher-b1805b70eae7b55df834206300d229dca7153c1f.tar.gz PrismLauncher-b1805b70eae7b55df834206300d229dca7153c1f.tar.bz2 PrismLauncher-b1805b70eae7b55df834206300d229dca7153c1f.zip |
fix(actions): fix ccache on windows
Also removes some unnecessary dependencies for the generic Linux package
Signed-off-by: DioEgizio <83089242+DioEgizio@users.noreply.github.com>
-rw-r--r-- | .github/workflows/build.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5b8e5365..6ee3aaf6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -109,9 +109,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 @@ -134,7 +134,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' |