-
-
Notifications
You must be signed in to change notification settings - Fork 163
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/danielaparker/jsoncons in…
…to json_pointer
- Loading branch information
Showing
23 changed files
with
180 additions
and
180 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -137,48 +137,80 @@ jobs: | |
- working-directory: build/ | ||
run: ctest -C ubuntu-latest --output-on-failure | ||
|
||
# clang_build_cxx20: | ||
# runs-on: ubuntu-latest | ||
# | ||
# steps: | ||
# - uses: actions/checkout@v4 | ||
# - name: install_gcc | ||
# run: | | ||
# sudo apt update | ||
# sudo apt install clang-14 | ||
# shell: bash | ||
# - name: cmake | ||
# run: cmake -S . -B build -DJSONCONS_SANITIZE=ON -DCMAKE_BUILD_TYPE=Debug -DJSONCONS_BUILD_TESTS=On -DCMAKE_CXX_STANDARD=20 -DCMAKE_CXX_STANDARD_REQUIRED=ON | ||
# env: | ||
# CC: clang-14 | ||
# CXX: clang++-14 | ||
# | ||
# - working-directory: build/ | ||
# run: cmake --build . --config ubuntu-latest | ||
# | ||
# - working-directory: build/ | ||
# run: ctest -C ubuntu-latest --output-on-failure | ||
|
||
# gcc_build_48: | ||
# name: GCC 4.8 | ||
# runs-on: ubuntu-18.04 | ||
# | ||
# steps: | ||
# - uses: actions/checkout@v4 | ||
# with: | ||
# fetch-depth: 0 | ||
# - name: Install | ||
# run: | | ||
# sudo apt-get update -y -qq && sudo apt-get install -y -qq g++-4.8 binutils | ||
# shell: bash | ||
# - name: cmake | ||
# run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Debug -DJSONCONS_BUILD_TESTS=On | ||
# env: | ||
# CC: gcc-4.8 | ||
# CXX: g++-4.8 | ||
# - name: build | ||
# run: cmake --build build --parallel 10 | ||
# - name: test | ||
# run: cd build ; ctest -j 10 --output-on-failure | ||
|
||
ci_test_compilers_gcc: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
compiler: ['6','7','8','9','10','11','12','latest'] | ||
container: gcc:${{ matrix.compiler }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Get latest CMake and ninja | ||
uses: lukka/[email protected] | ||
- name: cmake | ||
run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Debug -DJSONCONS_BUILD_TESTS=On | ||
- name: build | ||
run: cmake --build build | ||
- name: test | ||
run: cd build ; ctest --output-on-failure | ||
|
||
ci_test_compilers_gcc2: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
compiler: ['12','latest'] | ||
container: gcc:${{ matrix.compiler }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Get latest CMake and ninja | ||
uses: lukka/[email protected] | ||
- name: cmake | ||
run: cmake -S . -B build -DJSONCONS_SANITIZE=ON -DCMAKE_BUILD_TYPE=Debug -DJSONCONS_BUILD_TESTS=On | ||
- name: build | ||
run: cmake --build build | ||
- name: test | ||
run: cd build ; ctest --output-on-failure | ||
|
||
ci_test_compilers_clang: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
# compiler: ['3.5', '3.6', '3.7', '3.8', '3.9', '4', '5', '6', '7', '8', '9', '10', '11', '12', '13', '15-bullseye', 'latest'] | ||
compiler: ['3.9', '4', '5', '6', '7','8','9', '10', '11', '12', '13', '14', '15-bullseye'] | ||
container: silkeh/clang:${{ matrix.compiler }} | ||
steps: | ||
- name: Install unzip and git | ||
run: apt-get update ; apt-get install -y unzip git | ||
- uses: actions/checkout@v3 | ||
- name: Get latest CMake and ninja | ||
uses: lukka/[email protected] | ||
- name: cmake | ||
run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DJSONCONS_BUILD_TESTS=On | ||
- name: build | ||
working-directory: build/ | ||
run: cmake --build . | ||
- name: test | ||
working-directory: build/ | ||
run: ctest --output-on-failure | ||
|
||
ci_test_compilers_clang2: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
compiler: ['13', '15-bullseye'] | ||
container: silkeh/clang:${{ matrix.compiler }} | ||
steps: | ||
- name: Install unzip and git | ||
run: apt-get update ; apt-get install -y unzip git | ||
- uses: actions/checkout@v3 | ||
- name: Get latest CMake and ninja | ||
uses: lukka/[email protected] | ||
- name: cmake | ||
run: cmake -S . -B build -DJSONCONS_SANITIZE=ON -DCMAKE_BUILD_TYPE=Debug -DJSONCONS_BUILD_TESTS=On | ||
- name: build | ||
working-directory: build/ | ||
run: cmake --build . | ||
- name: test | ||
working-directory: build/ | ||
run: ctest --output-on-failure | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.