build-win.yml (1120B)
1 name: Build on Windows 2 on: 3 push: 4 branches: [ "**" ] 5 pull_request: 6 branches: [ "**" ] 7 jobs: 8 build: 9 runs-on: ${{ matrix.os }} 10 strategy: 11 fail-fast: false 12 matrix: 13 os: [windows-2019, windows-2022] 14 build_type: [Release] 15 c_compiler: [cl] 16 steps: 17 - uses: actions/checkout@v3 18 - name: Set reusable strings 19 id: strings 20 shell: bash 21 run: | 22 echo "build-output-dir=${{ github.workspace }}/build" >> "$GITHUB_OUTPUT" 23 - name: Configure CMake 24 run: > 25 cmake -B ${{ steps.strings.outputs.build-output-dir }} 26 -DCMAKE_CXX_COMPILER=${{ matrix.cpp_compiler }} 27 -DCMAKE_C_COMPILER=${{ matrix.c_compiler }} 28 -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} 29 -DCMAKE_C_FLAGS=/wd5105 30 -DENABLE_TESTS=1 31 -S ${{ github.workspace }} 32 - name: Build 33 run: cmake --build ${{ steps.strings.outputs.build-output-dir }} --config ${{ matrix.build_type }} 34 - name: Test 35 working-directory: ${{ steps.strings.outputs.build-output-dir }} 36 run: ctest --build-config ${{ matrix.build_type }}