From e5cf533d1c742f486e7c81c90352c2781f623ce6 Mon Sep 17 00:00:00 2001 From: Simon Hausmann Date: Mon, 24 Jan 2022 14:07:35 +0100 Subject: [PATCH] Use gcc 10 in the package test in the CI --- .github/workflows/ci.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 01094fbea..f07f31ae8 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -266,7 +266,10 @@ jobs: steps: - uses: actions/checkout@v2 - name: Install Linux Dependencies - run: sudo apt-get install libxcb-shape0-dev libxcb-xfixes0-dev libxkbcommon-dev + if: matrix.os == 'ubuntu-20.04' + run: | + sudo apt-get install libxcb-shape0-dev libxcb-xfixes0-dev libxkbcommon-dev gcc-10 g++-10 + echo "CXX=g++-10" >> $GITHUB_ENV - name: Cache Qt id: cache-qt uses: actions/cache@v2