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:
pajlada 2020-04-25 07:42:56 -04:00 committed by GitHub
parent 370e6dc61b
commit 08678628d5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -24,8 +24,18 @@ jobs:
with: with:
submodules: true submodules: true
- name: Cache Qt
id: cache-qt
uses: actions/cache@v1
with:
path: ../Qt
key: ${{ runner.os }}-QtCache
- name: Install Qt - 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 # WINDOWS
- name: Cache conan - name: Cache conan