forked from nlohmann/json
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Another desperate try to fix the CI (nlohmann#4489)
* 🚨 fix warning * 💚 update actions * 🚨 fix warning * 🚨 fix warning * 🚨 fix warning * 💚 update actions * 💚 update actions * 🚨 fix warning * 🚨 fix warning * 💚 update actions * 🚨 fix warning * 💚 update actions * 💚 update actions * 💚 update actions * 🚨 fix warning * 🚨 fix warning * 🚨 fix warning * 🚨 fix warning * 💚 update actions * 💚 update actions * 🚨 fix warning * 💚 update actions * 💚 update actions * 💚 update actions * 💚 update actions * 💚 update actions
- Loading branch information
Showing
37 changed files
with
351 additions
and
220 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,7 +23,7 @@ jobs: | |
steps: | ||
- name: Install git and unzip | ||
run: apt-get update ; apt-get install -y git unzip | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- name: Get latest CMake and ninja | ||
uses: lukka/[email protected] | ||
- name: Run CMake | ||
|
@@ -35,7 +35,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
container: ghcr.io/nlohmann/json-ci:v2.4.0 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- name: Run CMake | ||
run: cmake -S . -B build -DJSON_CI=On | ||
- name: Build | ||
|
@@ -48,7 +48,7 @@ jobs: | |
matrix: | ||
target: [ci_cppcheck, ci_test_valgrind, ci_test_amalgamation, ci_test_single_header, ci_single_binaries, ci_infer] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- name: Run CMake | ||
run: cmake -S . -B build -DJSON_CI=On | ||
- name: Build | ||
|
@@ -60,7 +60,7 @@ jobs: | |
matrix: | ||
target: [ci_cpplint, ci_reproducible_tests, ci_non_git_tests, ci_offline_testdata] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- name: Get latest CMake and ninja | ||
uses: lukka/[email protected] | ||
- name: Run CMake | ||
|
@@ -77,7 +77,7 @@ jobs: | |
steps: | ||
- name: Install git, clang-tools, and unzip | ||
run: apt-get update ; apt-get install -y git clang-tools unzip | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- name: Get latest CMake and ninja | ||
uses: lukka/[email protected] | ||
- name: Run CMake | ||
|
@@ -94,7 +94,7 @@ jobs: | |
steps: | ||
- name: Install build-essential | ||
run: apt-get update ; apt-get install -y build-essential unzip wget git | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- name: Get latest CMake and ninja | ||
uses: lukka/[email protected] | ||
- name: Run CMake | ||
|
@@ -109,7 +109,7 @@ jobs: | |
contents: read | ||
checks: write | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- name: Run CMake | ||
run: cmake -S . -B build -DJSON_CI=On | ||
- name: Build | ||
|
@@ -125,14 +125,28 @@ jobs: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
path-to-lcov: ${{ github.workspace }}/build/json.info.filtered.noexcept | ||
|
||
ci_test_compilers_gcc_old: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
compiler: ['4.8', '4.9', '5', '6'] | ||
container: ghcr.io/nlohmann/json-ci:v2.4.0 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Run CMake | ||
run: CXX=g++-${{ matrix.compiler }} cmake -S . -B build -DJSON_CI=On | ||
- name: Build | ||
run: cmake --build build --target ci_test_compiler_g++-${{ matrix.compiler }} | ||
|
||
ci_test_compilers_gcc: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
compiler: ['4', '5', '6', '7', '8', '9', '10', '11', '12', 'latest'] | ||
# older GCC docker images (4, 5, 6) fail to check out code | ||
compiler: ['7', '8', '9', '10', '11', '12', '13', '14', 'latest'] | ||
container: gcc:${{ matrix.compiler }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- name: Get latest CMake and ninja | ||
uses: lukka/[email protected] | ||
- name: Run CMake | ||
|
@@ -144,12 +158,12 @@ jobs: | |
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', '14', '15-bullseye', 'latest'] | ||
compiler: ['3.5', '3.6', '3.7', '3.8', '3.9', '4', '5', '6', '7', '8', '9', '10', '11', '12', '13', '14', '15-bullseye', '16', '17', '18', '19', 'latest'] | ||
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 | ||
- uses: actions/checkout@v4 | ||
- name: Get latest CMake and ninja | ||
uses: lukka/[email protected] | ||
- name: Set env FORCE_STDCPPFS_FLAG for clang 7 / 8 / 9 / 10 | ||
|
@@ -167,7 +181,7 @@ jobs: | |
matrix: | ||
compiler: [g++-4.8] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- name: Run CMake | ||
run: cmake -S . -B build -DJSON_CI=On | ||
- name: Build | ||
|
@@ -180,7 +194,7 @@ jobs: | |
matrix: | ||
standard: [11, 14, 17, 20, 23] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- name: Run CMake | ||
run: cmake -S . -B build -DJSON_CI=On | ||
- name: Build | ||
|
@@ -195,7 +209,7 @@ jobs: | |
steps: | ||
- name: Install git and unzip | ||
run: apt-get update ; apt-get install -y git unzip | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- name: Get latest CMake and ninja | ||
uses: lukka/[email protected] | ||
- name: Run CMake | ||
|
@@ -207,7 +221,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
container: ghcr.io/nlohmann/json-ci:v2.4.0 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- name: Run CMake | ||
run: cmake -S . -B build -DJSON_CI=On | ||
- name: Build | ||
|
@@ -228,7 +242,7 @@ jobs: | |
ci_reuse_compliance: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v3 | ||
- name: Install REUSE tool | ||
run: python -m pip install reuse | ||
|
@@ -241,7 +255,7 @@ jobs: | |
matrix: | ||
target: [ci_test_examples, ci_test_api_documentation] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- name: Run CMake | ||
run: cmake -S . -B build -DJSON_CI=On | ||
- name: Build | ||
|
Oops, something went wrong.