mirror of
https://github.com/fmtlib/fmt.git
synced 2025-07-29 18:27:40 +02:00
use gcc-10.2 instead of gcc-10.1 on CI, also fix one problem (#2110)
the problem was not detected by test because of wrong gcc-10 minor version on CI
This commit is contained in:
9
.github/workflows/linux.yml
vendored
9
.github/workflows/linux.yml
vendored
@ -4,28 +4,35 @@ on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-18.04
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
matrix:
|
||||
cxx: [g++-4.8, g++-8, g++-10, clang++-9]
|
||||
build_type: [Debug, Release]
|
||||
std: [11]
|
||||
os: [ubuntu-18.04]
|
||||
include:
|
||||
- cxx: g++-4.8
|
||||
install: sudo apt install g++-4.8
|
||||
os: ubuntu-18.04
|
||||
- cxx: g++-8
|
||||
std: 14
|
||||
os: ubuntu-18.04
|
||||
- cxx: g++-10
|
||||
std: 17
|
||||
os: ubuntu-18.04
|
||||
- cxx: g++-10
|
||||
std: 20
|
||||
cxxflags: -DFMT_COMPILE_TIME_CHECKS=1
|
||||
os: ubuntu-20.04
|
||||
- cxx: clang++-9
|
||||
std: 11
|
||||
os: ubuntu-18.04
|
||||
- cxx: clang++-9
|
||||
build_type: Debug
|
||||
fuzz: -DFMT_FUZZ=ON -DFMT_FUZZ_LINKMAIN=ON
|
||||
std: 17
|
||||
os: ubuntu-18.04
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
Reference in New Issue
Block a user