Skip to content

Commit

Permalink
ci: Removes gcc and clang older than 9.x (#183)
Browse files Browse the repository at this point in the history
Support was dropped: actions/runner-images#2950
  • Loading branch information
bmario committed Apr 1, 2021
1 parent ad13bde commit 83c7797
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,17 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-20.04]
compiler: [g++-8, g++-9, g++-10, clang++-8, clang++-9, clang++-10]
compiler: [g++-9, g++-10, clang++-9, clang++-10, clang++-11]
include:
- os: ubuntu-16.04
compiler: g++-8
- os: ubuntu-16.04
compiler: g++-9
- os: ubuntu-16.04
compiler: clang++-8
- os: ubuntu-16.04
compiler: clang++-9
- os: ubuntu-18.04
compiler: g++-9
- os: ubuntu-18.04
compiler: g++-10
- os: ubuntu-18.04
compiler: clang++-9

runs-on: ${{ matrix.os }}
Expand Down

0 comments on commit 83c7797

Please sign in to comment.