Skip to content

Refactor extern/json submodule to update to commit 3aa6a4c #109

Refactor extern/json submodule to update to commit 3aa6a4c

Refactor extern/json submodule to update to commit 3aa6a4c #109

Workflow file for this run

name: CMake
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
build_type: [Debug, Release]
use_ssl: [ON, OFF]
env:
BUILD_TYPE: ${{ matrix.build_type }}
USE_SSL: ${{ matrix.use_ssl }}
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DUSE_SSL=${{env.USE_SSL}}
- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
- name: Test
working-directory: ${{github.workspace}}/build
run: ctest -C ${{env.BUILD_TYPE}} --rerun-failed --output-on-failure