From 61640fb5c7ed834c264756e224ec81079f8baec2 Mon Sep 17 00:00:00 2001 From: Lovell Fuller Date: Thu, 3 Jun 2021 18:01:05 +0100 Subject: [PATCH] CI: use gcc 10 on Linux x64 --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ef2ce221..d119bfa1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -57,7 +57,9 @@ jobs: if: contains(matrix.container, 'centos') run: | curl -sL https://rpm.nodesource.com/setup_${{ matrix.nodejs_version }}.x | bash - - yum install -y gcc-c++ make git python3 nodejs + yum install -y centos-release-scl + yum install -y devtoolset-10-gcc-c++ make git python3 nodejs + echo "/opt/rh/devtoolset-10/root/usr/bin" >> $GITHUB_PATH - name: Dependencies (Linux musl) if: contains(matrix.container, 'alpine') run: apk add build-base git python3 --update-cache