Add support for reflect-cpp's JSON #636
Workflow file for this run
This file contains hidden or 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
| name: JWT CI | |
| on: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| branches: [master] | |
| jobs: | |
| coverage: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: lukka/get-cmake@latest | |
| - uses: ./.github/actions/install/gtest | |
| - uses: ./.github/actions/install/danielaparker-jsoncons | |
| - uses: ./.github/actions/install/boost-json | |
| - uses: ./.github/actions/install/open-source-parsers-jsoncpp | |
| - uses: ./.github/actions/install/glaze-json | |
| - uses: ./.github/actions/install/reflectcpp-json | |
| - name: Configure LCOV to ignore mismatches | |
| # https://github.com/linux-test-project/lcov/issues/316#issuecomment-2304694266 | |
| # The affected feature sare not used, the lcov and gcov dont match (sufficiently) in github actions runners | |
| run: | | |
| echo "ignore_errors = mismatch,mismatch" > .lcovrc | |
| - name: configure | |
| run: cmake --preset coverage | |
| - name: run | |
| run: cmake --build --preset coverage | |
| - uses: coverallsapp/github-action@v2 | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| file: build/coverage.info | |
| format: lcov | |
| fuzzing: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: lukka/get-cmake@latest | |
| - name: configure | |
| run: cmake --preset ci-fuzzing | |
| - name: build | |
| run: cmake --build --preset ci-fuzzing | |
| - name: run | |
| run: | | |
| cmake --build --preset ci-fuzzing --target jwt-cpp-fuzz-BaseEncodeFuzz-run | |
| cmake --build --preset ci-fuzzing --target jwt-cpp-fuzz-BaseDecodeFuzz-run | |
| cmake --build --preset ci-fuzzing --target jwt-cpp-fuzz-TokenDecodeFuzz-run | |
| asan: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| openssl: | |
| - { tag: "openssl-3.6.1", name: "3.6.1" } | |
| - { tag: "OpenSSL_1_1_1w", name: "1.1.1w" } | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: lukka/get-cmake@latest | |
| - uses: ./.github/actions/install/gtest | |
| - uses: ./.github/actions/install/openssl | |
| with: | |
| version: ${{ matrix.openssl.tag }} | |
| - name: configure | |
| run: cmake --preset ci-asan | |
| - name: build | |
| run: cmake --build --preset ci-asan | |
| - name: run | |
| run: | | |
| cmake --build --preset ci-asan --target private-claims-run | |
| cmake --build --preset ci-asan --target rsa-create-run | |
| cmake --build --preset ci-asan --target rsa-verify-run | |
| cmake --build --preset ci-asan --target jwks-verify-run | |
| cmake --build --preset ci-asan --target jwt-cpp-test-run | |
| ubsan: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: lukka/get-cmake@latest | |
| - uses: ./.github/actions/install/gtest | |
| - name: configure | |
| run: cmake --preset ci-ubsan | |
| - name: build | |
| run: cmake --build --preset ci-ubsan -DCMAKE_CXX_STANDARD=20 | |
| - name: run | |
| run: | | |
| cmake --build --preset ci-ubsan --target private-claims-run | |
| cmake --build --preset ci-ubsan --target rsa-create-run | |
| cmake --build --preset ci-ubsan --target rsa-verify-run | |
| cmake --build --preset ci-ubsan --target jwks-verify-run | |
| cmake --build --preset ci-ubsan --target jwt-cpp-test-run |