From 8b14ff7641a3fc4eb4f92e22d4ffdbf9cb75b522 Mon Sep 17 00:00:00 2001 From: Niels Lohmann Date: Sun, 14 Aug 2022 15:06:23 +0200 Subject: [PATCH] :alembic: try official Clang containers --- .github/workflows/ubuntu.yml | 290 +++++++++++++++++------------------ 1 file changed, 145 insertions(+), 145 deletions(-) diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index 1ecc95af4..325b3122a 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -14,81 +14,81 @@ concurrency: cancel-in-progress: true jobs: -# ci_test_clang: -# runs-on: ubuntu-latest -# container: ghcr.io/nlohmann/json-ci:v2.4.0 -# steps: -# - uses: actions/checkout@v3 -# - name: Run CMake -# run: cmake -S . -B build -DJSON_CI=On -# - name: Build -# run: cmake --build build --target ci_test_clang -# -# ci_test_gcc: -# runs-on: ubuntu-latest -# container: ghcr.io/nlohmann/json-ci:v2.4.0 -# steps: -# - uses: actions/checkout@v3 -# - name: Run CMake -# run: cmake -S . -B build -DJSON_CI=On -# - name: Build -# run: cmake --build build --target ci_test_gcc -# -# ci_static_analysis: -# runs-on: ubuntu-latest -# container: ghcr.io/nlohmann/json-ci:v2.4.0 -# strategy: -# matrix: -# target: [ci_clang_tidy, ci_cppcheck, ci_test_valgrind, ci_test_clang_sanitizer, ci_test_amalgamation, ci_clang_analyze, ci_cpplint, ci_cmake_flags, ci_single_binaries, ci_reproducible_tests, ci_non_git_tests, ci_offline_testdata, ci_infer] -# steps: -# - uses: actions/checkout@v3 -# - name: Run CMake -# run: cmake -S . -B build -DJSON_CI=On -# - name: Build -# run: cmake --build build --target ${{ matrix.target }} -# -# ci_test_single_header: -# runs-on: ubuntu-latest -# container: ghcr.io/nlohmann/json-ci:v2.4.0 -# steps: -# - uses: actions/checkout@v3 -# - name: Run CMake -# run: cmake -S . -B build -DJSON_CI=On -# - name: Build -# run: cmake --build build --target ci_test_single_header -# -# ci_cmake_options: -# runs-on: ubuntu-latest -# container: ghcr.io/nlohmann/json-ci:v2.4.0 -# strategy: -# matrix: -# target: [ci_test_diagnostics, ci_test_noexceptions, ci_test_noimplicitconversions, ci_test_legacycomparison, ci_test_noglobaludls] -# steps: -# - uses: actions/checkout@v3 -# - name: Run CMake -# run: cmake -S . -B build -DJSON_CI=On -# - name: Build -# run: cmake --build build --target ${{ matrix.target }} -# -# ci_test_coverage: -# runs-on: ubuntu-latest -# container: ghcr.io/nlohmann/json-ci:v2.4.0 -# steps: -# - uses: actions/checkout@v3 -# - name: Run CMake -# run: cmake -S . -B build -DJSON_CI=On -# - name: Build -# run: cmake --build build --target ci_test_coverage -# - name: Archive coverage report -# uses: actions/upload-artifact@v3 -# with: -# name: code-coverage-report -# path: ${{ github.workspace }}/build/html -# - name: Publish report to Coveralls -# uses: coverallsapp/github-action@master -# with: -# github-token: ${{ secrets.GITHUB_TOKEN }} -# path-to-lcov: ${{ github.workspace }}/build/json.info.filtered.noexcept + ci_test_clang: + runs-on: ubuntu-latest + container: ghcr.io/nlohmann/json-ci:v2.4.0 + steps: + - uses: actions/checkout@v3 + - name: Run CMake + run: cmake -S . -B build -DJSON_CI=On + - name: Build + run: cmake --build build --target ci_test_clang + + ci_test_gcc: + runs-on: ubuntu-latest + container: ghcr.io/nlohmann/json-ci:v2.4.0 + steps: + - uses: actions/checkout@v3 + - name: Run CMake + run: cmake -S . -B build -DJSON_CI=On + - name: Build + run: cmake --build build --target ci_test_gcc + + ci_static_analysis: + runs-on: ubuntu-latest + container: ghcr.io/nlohmann/json-ci:v2.4.0 + strategy: + matrix: + target: [ci_clang_tidy, ci_cppcheck, ci_test_valgrind, ci_test_clang_sanitizer, ci_test_amalgamation, ci_clang_analyze, ci_cpplint, ci_cmake_flags, ci_single_binaries, ci_reproducible_tests, ci_non_git_tests, ci_offline_testdata, ci_infer] + steps: + - uses: actions/checkout@v3 + - name: Run CMake + run: cmake -S . -B build -DJSON_CI=On + - name: Build + run: cmake --build build --target ${{ matrix.target }} + + ci_test_single_header: + runs-on: ubuntu-latest + container: ghcr.io/nlohmann/json-ci:v2.4.0 + steps: + - uses: actions/checkout@v3 + - name: Run CMake + run: cmake -S . -B build -DJSON_CI=On + - name: Build + run: cmake --build build --target ci_test_single_header + + ci_cmake_options: + runs-on: ubuntu-latest + container: ghcr.io/nlohmann/json-ci:v2.4.0 + strategy: + matrix: + target: [ci_test_diagnostics, ci_test_noexceptions, ci_test_noimplicitconversions, ci_test_legacycomparison, ci_test_noglobaludls] + steps: + - uses: actions/checkout@v3 + - name: Run CMake + run: cmake -S . -B build -DJSON_CI=On + - name: Build + run: cmake --build build --target ${{ matrix.target }} + + ci_test_coverage: + runs-on: ubuntu-latest + container: ghcr.io/nlohmann/json-ci:v2.4.0 + steps: + - uses: actions/checkout@v3 + - name: Run CMake + run: cmake -S . -B build -DJSON_CI=On + - name: Build + run: cmake --build build --target ci_test_coverage + - name: Archive coverage report + uses: actions/upload-artifact@v3 + with: + name: code-coverage-report + path: ${{ github.workspace }}/build/html + - name: Publish report to Coveralls + uses: coverallsapp/github-action@master + with: + github-token: ${{ secrets.GITHUB_TOKEN }} + path-to-lcov: ${{ github.workspace }}/build/json.info.filtered.noexcept ci_test_compilers_gcc: runs-on: ubuntu-latest @@ -120,73 +120,73 @@ jobs: - name: Build run: cmake --build build --target ci_test_compiler_default -# ci_test_compilers: -# runs-on: ubuntu-latest -# container: ghcr.io/nlohmann/json-ci:v2.4.0 -# strategy: -# matrix: -# compiler: [g++-4.8, g++-4.9, g++-5, g++-6, g++-7, g++-8, g++-9, g++-10, g++-11, clang++-3.5, clang++-3.6, clang++-3.7, clang++-3.8, clang++-3.9, clang++-4.0, clang++-5.0, clang++-6.0, clang++-7, clang++-8, clang++-9, clang++-10, clang++-11, clang++-12, clang++-13, clang++-14] -# steps: -# - uses: actions/checkout@v3 -# - name: Run CMake -# run: cmake -S . -B build -DJSON_CI=On -# - name: Build -# run: cmake --build build --target ci_test_compiler_${{ matrix.compiler }} -# -# ci_test_standards: -# runs-on: ubuntu-latest -# container: ghcr.io/nlohmann/json-ci:v2.4.0 -# strategy: -# matrix: -# standard: [11, 14, 17, 20] -# compiler: [gcc, clang] -# steps: -# - uses: actions/checkout@v3 -# - name: Run CMake -# run: cmake -S . -B build -DJSON_CI=On -# - name: Build -# run: cmake --build build --target ci_test_${{ matrix.compiler }}_cxx${{ matrix.standard }} -# -# ci_cuda_example: -# runs-on: ubuntu-latest -# container: ghcr.io/nlohmann/json-ci:v2.4.0 -# steps: -# - uses: actions/checkout@v3 -# - name: Run CMake -# run: cmake -S . -B build -DJSON_CI=On -# - name: Build -# run: cmake --build build --target ci_cuda_example -# -# ci_icpc: -# runs-on: ubuntu-latest -# container: ghcr.io/nlohmann/json-ci:v2.2.0 -# steps: -# - uses: actions/checkout@v2 -# - name: Run CMake -# run: cmake -S . -B build -DJSON_CI=On -# - name: Build -# run: | -# . /opt/intel/oneapi/setvars.sh -# cmake --build build --target ci_icpc -# -# ci_reuse_compliance: -# runs-on: ubuntu-latest -# steps: -# - uses: actions/checkout@v3 -# - uses: actions/setup-python@v3 -# - name: Install REUSE tool -# run: python -m pip install reuse -# - name: Run REUSE lint -# run: reuse lint -# -# ci_test_documentation: -# runs-on: ubuntu-latest -# strategy: -# matrix: -# target: [ci_test_examples, ci_test_api_documentation] -# steps: -# - uses: actions/checkout@v3 -# - name: Run CMake -# run: cmake -S . -B build -DJSON_CI=On -# - name: Build -# run: cmake --build build --target ${{ matrix.target }} + ci_test_compilers: + runs-on: ubuntu-latest + container: ghcr.io/nlohmann/json-ci:v2.4.0 + strategy: + matrix: + compiler: [g++-4.8, g++-4.9, g++-5, g++-6] + steps: + - uses: actions/checkout@v3 + - name: Run CMake + run: cmake -S . -B build -DJSON_CI=On + - name: Build + run: cmake --build build --target ci_test_compiler_${{ matrix.compiler }} + + ci_test_standards: + runs-on: ubuntu-latest + container: ghcr.io/nlohmann/json-ci:v2.4.0 + strategy: + matrix: + standard: [11, 14, 17, 20] + compiler: [gcc, clang] + steps: + - uses: actions/checkout@v3 + - name: Run CMake + run: cmake -S . -B build -DJSON_CI=On + - name: Build + run: cmake --build build --target ci_test_${{ matrix.compiler }}_cxx${{ matrix.standard }} + + ci_cuda_example: + runs-on: ubuntu-latest + container: ghcr.io/nlohmann/json-ci:v2.4.0 + steps: + - uses: actions/checkout@v3 + - name: Run CMake + run: cmake -S . -B build -DJSON_CI=On + - name: Build + run: cmake --build build --target ci_cuda_example + + ci_icpc: + runs-on: ubuntu-latest + container: ghcr.io/nlohmann/json-ci:v2.2.0 + steps: + - uses: actions/checkout@v2 + - name: Run CMake + run: cmake -S . -B build -DJSON_CI=On + - name: Build + run: | + . /opt/intel/oneapi/setvars.sh + cmake --build build --target ci_icpc + + ci_reuse_compliance: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-python@v3 + - name: Install REUSE tool + run: python -m pip install reuse + - name: Run REUSE lint + run: reuse lint + + ci_test_documentation: + runs-on: ubuntu-latest + strategy: + matrix: + target: [ci_test_examples, ci_test_api_documentation] + steps: + - uses: actions/checkout@v3 + - name: Run CMake + run: cmake -S . -B build -DJSON_CI=On + - name: Build + run: cmake --build build --target ${{ matrix.target }}