From bace27426ec9705dbdcd4214dc85bb41bd77f6b9 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Thu, 2 Jan 2025 16:33:25 +0200 Subject: [PATCH] Add a CI job testing -funsigned-char --- .github/workflows/ci.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index afa93f7..7a17e9f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -64,6 +64,11 @@ jobs: container: ubuntu:24.04 os: ubuntu-latest install: g++-14 + - toolset: gcc + cxxflags: -funsigned-char + cxxstd: "03,11,14,17,20,2b" + container: ubuntu:24.04 + os: ubuntu-latest - toolset: clang compiler: clang++-3.9 cxxstd: "03,11,14" @@ -227,7 +232,7 @@ jobs: - name: Run tests run: | cd ../boost-root - ./b2 -j3 libs/$LIBRARY/test toolset=${{matrix.toolset}} cxxstd=${{matrix.cxxstd}} variant=debug,release + ./b2 -j3 libs/$LIBRARY/test toolset=${{matrix.toolset}} cxxstd=${{matrix.cxxstd}} cxxflags=${{matrix.cxxflags}} variant=debug,release windows: strategy: