Skip to content

Commit

Permalink
CI: Update GitHub Actions workflow to use GCC 11
Browse files Browse the repository at this point in the history
Updates the GitHub Actions workflow to use GCC 11 (instead of GCC 10) on the Ubuntu and macOS runs.
  • Loading branch information
EwoutH committed Jun 3, 2021
1 parent a17693d commit a7ce27d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a7ce27d

Please sign in to comment.