From 08678628d561c2bc7054b0ae7fcb308243d34e56 Mon Sep 17 00:00:00 2001 From: pajlada Date: Sat, 25 Apr 2020 07:42:56 -0400 Subject: [PATCH] Update CI Qt installation steps (#1650) * Update qt action install from v1 to v2 * Use Qt repository mirror * Cache Qt download/installation --- .github/workflows/build.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 75bdc29d5..5300073a6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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