Fix nvcc warnings - issue #229 #208
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/checkout@v2.0.0 | |
- 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 |