Skip to content

Commit

Permalink
CI: Remove GCC 7 and 8 jobs, add Clang 10 and 11 jobs
Browse files Browse the repository at this point in the history
 - Removes the GCC 7 and GCC 8 build jobs on Ubuntu. They have been removed from the images (see actions/runner-images#2950).
- Adds Clang 10 and Clang 11 build jobs
- Disable fail-fast in the build matrix, no builds will be cancelled on failure
  • Loading branch information
EwoutH committed Apr 7, 2021
1 parent 2dd949e commit ed02a6c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,15 @@ jobs:
build:
runs-on: ${{ matrix.os }}-latest
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu
env: CC=/usr/bin/clang-9 CXX=/usr/bin/clang++-9
- os: ubuntu
env: CC=/usr/bin/gcc-7 CXX=/usr/bin/g++-7
env: CC=/usr/bin/clang-10 CXX=/usr/bin/clang++-10
- os: ubuntu
env: CC=/usr/bin/gcc-8 CXX=/usr/bin/g++-8
env: CC=/usr/bin/clang-11 CXX=/usr/bin/clang++-11
- os: ubuntu
env: CC=/usr/bin/gcc-9 CXX=/usr/bin/g++-9
- os: ubuntu
Expand Down

0 comments on commit ed02a6c

Please sign in to comment.