From 09dbad47e125e86a819ab64c83f53b26efbf53fd Mon Sep 17 00:00:00 2001 From: Alexey Ochapov Date: Thu, 8 Apr 2021 02:49:30 +0300 Subject: [PATCH] CI linux: add missing build_type for g++-8 C++14, g++10 C++17, g++10 C++20 --- .github/workflows/linux.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index cfde3f5f..3d69c325 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -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