From 59296075e8ea2368411cb77642030e5b16faf0d3 Mon Sep 17 00:00:00 2001 From: pajlada Date: Sat, 15 Feb 2020 12:04:05 -0500 Subject: [PATCH] Fix the CI by downgrading install-qt-action version (#1554) --- .github/workflows/build.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7fd328342..75bdc29d5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -25,9 +25,7 @@ jobs: submodules: true - name: Install Qt - uses: jurplel/install-qt-action@v2 - with: - modules: qtwebengine + uses: jurplel/install-qt-action@v1 # WINDOWS - name: Cache conan @@ -79,7 +77,7 @@ jobs: # LINUX - name: Install dependencies (Ubuntu) if: startsWith(matrix.os, 'ubuntu') - run: sudo apt-get update && sudo apt-get -y install libssl-dev libboost-dev libboost-system-dev libboost-filesystem-dev libpulse-dev libxkbcommon-x11-0 libgstreamer-plugins-base1.0-0 + run: sudo apt-get update && sudo apt-get -y install libssl-dev libboost-dev libboost-system-dev libboost-filesystem-dev libpulse-dev libxkbcommon-x11-0 libgstreamer-plugins-base1.0-0 build-essential libgl1-mesa-dev - name: Build (Ubuntu) if: startsWith(matrix.os, 'ubuntu')