more include cleaning #316
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
name: amd64 Windows CMake C++ | |
on: [push, pull_request] | |
jobs: | |
# Building using the github runner environement directly. | |
cmake: | |
# ref: https://github.com/actions/runner-images | |
strategy: | |
matrix: | |
runner: [ | |
windows-2022, | |
#windows-2019, | |
] | |
fail-fast: false # Don't cancel all jobs if one fails. | |
runs-on: ${{ matrix.runner }} | |
#runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Check cmake | |
run: | | |
cmake --version | |
cmake -G || true | |
- name: Configure | |
run: cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Release -DBUILD_DEPS=ON | |
- name: Build | |
run: cmake --build build --config Release --target ALL_BUILD -v -- /verbosity:d | |
- name: Test | |
run: cmake --build build --config Release --target RUN_TESTS -v -- /verbosity:d | |
- name: Install | |
run: cmake --build build --config Release --target INSTALL -v -- /verbosity:d |