aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorflow <flowlnlnln@gmail.com>2022-07-11 08:02:27 -0300
committerGitHub <noreply@github.com>2022-07-11 08:02:27 -0300
commit548a2a1d64412062300a58aa761a4c9e28b57af5 (patch)
tree836c1299c722aea8393ed8997a838e59c8d5d60e
parentac8ee9f981ea509c04ce64d70a47429a1207e18e (diff)
parentb1805b70eae7b55df834206300d229dca7153c1f (diff)
downloadPrismLauncher-548a2a1d64412062300a58aa761a4c9e28b57af5.tar.gz
PrismLauncher-548a2a1d64412062300a58aa761a4c9e28b57af5.tar.bz2
PrismLauncher-548a2a1d64412062300a58aa761a4c9e28b57af5.zip
Merge pull request #900 from DioEgizio/CI/fix
fix(actions): fix ccache on windows
-rw-r--r--.github/workflows/build.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index fbbc1417..9db8a6ac 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -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'