From 2f40d244ea60ff1a40fa5cdaab5d75d5bb48047f Mon Sep 17 00:00:00 2001 From: Olivier Goffart Date: Wed, 20 Jan 2021 10:38:01 +0100 Subject: [PATCH] CI: disable Qt for C++ build (temporarily) the download server is down so Qt cannot be installed. --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 04abf6a7b..6b091cebf 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -158,14 +158,14 @@ jobs: if: matrix.os == 'ubuntu-20.04' run: sudo apt-get install libxcb-shape0-dev libxcb-xfixes0-dev - name: Cache Qt - if: matrix.os != 'windows-latest' + if: false && matrix.os != 'windows-latest' id: cache-qt uses: actions/cache@v2 with: path: ../Qt key: ${{ runner.os }}-${{ github.job }}-cpp-Qt-5.15.2 - name: Install Qt - if: matrix.os != 'windows-latest' + if: false && matrix.os != 'windows-latest' uses: jurplel/install-qt-action@v2 with: version: '5.15.2'