Unused variable warning (issue #208) and remove c++17 dependency. #163
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: Windows | |
on: | |
push: | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [windows-latest] | |
flags: ["/std:c++11", "/std:c++latest"] | |
optimize: [/O2] | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Build and test | |
env: | |
CXX: ${{ matrix.compiler }} | |
CXXFLAGS: ${{ matrix.flags }} ${{ matrix.optimize }} | |
CTEST_OUTPUT_ON_FAILURE: 1 | |
run: | | |
cmake -Bbuild -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON -DCMAKE_BUILD_TYPE=Release && cmake --build build --target ALL_BUILD && cmake --build build --target RUN_TESTS |