diff options
author | Sefa Eyeoglu <contact@scrumplex.net> | 2022-07-09 13:33:10 +0200 |
---|---|---|
committer | Sefa Eyeoglu <contact@scrumplex.net> | 2022-07-10 12:19:15 +0200 |
commit | 203c3ec233ee8a1c4cf1a838087666d0128500ee (patch) | |
tree | 27683bb5852b66d24ef62a821831448411955bff | |
parent | e2a74dfc307ef89e7b365f89f3ab8f54a6772293 (diff) | |
download | PrismLauncher-203c3ec233ee8a1c4cf1a838087666d0128500ee.tar.gz PrismLauncher-203c3ec233ee8a1c4cf1a838087666d0128500ee.tar.bz2 PrismLauncher-203c3ec233ee8a1c4cf1a838087666d0128500ee.zip |
refactor(actions): speed up package installations for Windows
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
-rw-r--r-- | .github/workflows/build.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3d7096ab..c5682762 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -74,9 +74,12 @@ jobs: cmake:p extra-cmake-modules:p ninja:p - qt${{ matrix.qt_ver }}:p + qt${{ matrix.qt_ver }}-base:p + qt${{ matrix.qt_ver }}-svg:p + qt${{ matrix.qt_ver }}-imageformats:p ccache:p nsis:p + ${{ matrix.qt_ver == 6 && 'qt6-5compat:p' || '' }} - name: Setup ccache if: runner.os != 'Windows' && inputs.build_type == 'Debug' |