summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2020-10-02 13:22:04 +0100
committerSadie Powell <sadie@witchery.services>2020-10-02 14:27:04 +0100
commitc29b72fcdc4895ffeefd710e460ce2b59d8e8af3 (patch)
tree74c18345e141e31f3abc93998957bffe6714e7e1 /.github
parenta3673a5a2de9baccd3e0a423de753e65f90717b0 (diff)
Add C++98 and C++14 build matrixes to the Linux CI.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci-linux.yml4
1 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/ci-linux.yml b/.github/workflows/ci-linux.yml
index c0c240ee8..00c99561e 100644
--- a/.github/workflows/ci-linux.yml
+++ b/.github/workflows/ci-linux.yml
@@ -7,6 +7,7 @@ jobs:
runs-on: ubuntu-20.04
env:
CXX: ${{ matrix.compiler }}
+ CXXFLAGS: -std=${{ matrix.standard }}
steps:
- uses: actions/checkout@v2
- name: Install dependencies
@@ -45,3 +46,6 @@ jobs:
compiler:
- clang++
- g++
+ standard:
+ - c++98
+ - c++14