mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
Update CI Qt installation steps (#1650)
* Update qt action install from v1 to v2 * Use Qt repository mirror * Cache Qt download/installation
This commit is contained in:
parent
370e6dc61b
commit
08678628d5
1 changed files with 11 additions and 1 deletions
12
.github/workflows/build.yml
vendored
12
.github/workflows/build.yml
vendored
|
@ -24,8 +24,18 @@ jobs:
|
|||
with:
|
||||
submodules: true
|
||||
|
||||
- name: Cache Qt
|
||||
id: cache-qt
|
||||
uses: actions/cache@v1
|
||||
with:
|
||||
path: ../Qt
|
||||
key: ${{ runner.os }}-QtCache
|
||||
|
||||
- name: Install Qt
|
||||
uses: jurplel/install-qt-action@v1
|
||||
uses: jurplel/install-qt-action@v2
|
||||
with:
|
||||
mirror: 'http://mirrors.ocf.berkeley.edu/qt/'
|
||||
cached: ${{ steps.cache-qt.outputs.cache-hit }}
|
||||
|
||||
# WINDOWS
|
||||
- name: Cache conan
|
||||
|
|
Loading…
Reference in a new issue