mirror of
https://github.com/akheron/jansson.git
synced 2025-04-04 13:05:02 +00:00
Test with and without dtoa in CI
This commit is contained in:
parent
9699de8600
commit
9d3abab610
1 changed files with 4 additions and 3 deletions
7
.github/workflows/tests.yml
vendored
7
.github/workflows/tests.yml
vendored
|
@ -18,8 +18,9 @@ jobs:
|
||||||
matrix:
|
matrix:
|
||||||
os: ["ubuntu-latest", "macos-latest"]
|
os: ["ubuntu-latest", "macos-latest"]
|
||||||
cc: ["gcc", "clang"]
|
cc: ["gcc", "clang"]
|
||||||
|
dtoa: ["yes", "no"]
|
||||||
|
|
||||||
runs-on: ${{matrix.os}}
|
runs-on: ${{ matrix.os }}
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- if: ${{runner.os == 'macOS'}}
|
- if: ${{runner.os == 'macOS'}}
|
||||||
|
@ -27,9 +28,9 @@ jobs:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- run: autoreconf -fi
|
- run: autoreconf -fi
|
||||||
- env:
|
- env:
|
||||||
CC: ${{matrix.cc}}
|
CC: ${{ matrix.cc }}
|
||||||
CFLAGS: -Werror
|
CFLAGS: -Werror
|
||||||
run: ./configure
|
run: ./configure --enable-dtoa=${{ matrix.dtoa }}
|
||||||
- run: make check
|
- run: make check
|
||||||
|
|
||||||
cmake:
|
cmake:
|
||||||
|
|
Loading…
Add table
Reference in a new issue