Skip to content

Commit

Permalink
make sure the library builds with C++17 and C++20, in addition to C++14
Browse files Browse the repository at this point in the history
  • Loading branch information
arvidn committed Aug 24, 2023
1 parent 07698b6 commit 037c599
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

build:
name: build
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
continue-on-error: true

strategy:
Expand Down Expand Up @@ -61,17 +61,17 @@ jobs:

- name: build library
run: |
b2 ${{ matrix.config }} cxxstd=14
b2 ${{ matrix.config }} cxxstd=14,17,20
- name: build examples
run: |
cd examples
b2 ${{ matrix.config }}
b2 ${{ matrix.config }} cxxstd=14,17,20
- name: build tools
run: |
cd tools
b2 ${{ matrix.config }} warnings-as-errors=on
b2 ${{ matrix.config }} cxxstd=14,17,20 warnings-as-errors=on
Expand Down

0 comments on commit 037c599

Please sign in to comment.