CI: test on gcc-10 too
This commit is contained in:
parent
fdd4857c1d
commit
4ce7aa6f70
1 changed files with 6 additions and 1 deletions
7
.github/workflows/ci.yml
vendored
7
.github/workflows/ci.yml
vendored
|
@ -16,17 +16,22 @@ jobs:
|
||||||
linux:
|
linux:
|
||||||
name: Linux
|
name: Linux
|
||||||
|
|
||||||
runs-on: ubuntu-18.04
|
runs-on: ${{ matrix.os }}
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
|
os:
|
||||||
|
- ubuntu-18.04
|
||||||
compiler:
|
compiler:
|
||||||
- gcc-6 # Debian 9 (OFTC)
|
- gcc-6 # Debian 9 (OFTC)
|
||||||
- gcc-7
|
- gcc-7
|
||||||
- gcc-8
|
- gcc-8
|
||||||
- clang-7
|
- clang-7
|
||||||
- clang-8
|
- clang-8
|
||||||
|
include:
|
||||||
|
- os: ubuntu-20.04
|
||||||
|
compiler: gcc-10
|
||||||
|
|
||||||
env:
|
env:
|
||||||
CC: ${{ matrix.compiler }}
|
CC: ${{ matrix.compiler }}
|
||||||
|
|
Loading…
Reference in a new issue