CI linux: add missing build_type

for g++-8 C++14, g++10 C++17, g++10 C++20
This commit is contained in:
Alexey Ochapov 2021-04-08 02:49:30 +03:00
parent bc344e9dee
commit c254fec4aa
No known key found for this signature in database
GPG Key ID: 9DC52E8F031B8DA8

View File

@ -16,13 +16,16 @@ jobs:
install: sudo apt install g++-4.8
os: ubuntu-18.04
- cxx: g++-8
build_type: Debug
std: 14
install: sudo apt install g++-8
os: ubuntu-18.04
- cxx: g++-10
build_type: Debug
std: 17
os: ubuntu-18.04
- cxx: g++-10
build_type: Debug
std: 20
cxxflags: -DFMT_COMPILE_TIME_CHECKS=1
os: ubuntu-20.04