From a7ce27d5d2ceb9750cad09c5e4d3bf1b534dfbae Mon Sep 17 00:00:00 2001 From: Ewout ter Hoeven Date: Tue, 18 May 2021 10:13:59 +0200 Subject: [PATCH] CI: Update GitHub Actions workflow to use GCC 11 Updates the GitHub Actions workflow to use GCC 11 (instead of GCC 10) on the Ubuntu and macOS runs. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fa4a701b5b..d0a8b3708b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,9 +10,9 @@ jobs: steps: - uses: actions/checkout@v2 - - name: Set GCC & G++ 10 compiler (on Linux) + - name: Set GCC & G++ 11 compiler (on Linux) if: runner.os == 'Linux' - run: echo "CC=gcc-10" >> $GITHUB_ENV && echo "CXX=g++-10" >> $GITHUB_ENV + run: echo "CC=gcc-11" >> $GITHUB_ENV && echo "CXX=g++-11" >> $GITHUB_ENV - uses: actions/setup-python@v2 - name: Cache external dependencies