Bezier simplex (#59) #207
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: build and test | |
on: [push] | |
jobs: | |
build-Ubuntu: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: build and run | |
run: | | |
mkdir build | |
cd build | |
cmake .. -DCMAKE_BUILD_TYPE=Release -DNANOSPLINE_HEADER_ONLY=Off | |
cmake --build . --config Release -j | |
cmake --build . --config Release --target test | |
build-MacOS: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: build and run | |
run: | | |
mkdir build | |
cd build | |
cmake .. -DCMAKE_BUILD_TYPE=Release -DNANOSPLINE_HEADER_ONLY=Off | |
cmake --build . --config Release -j | |
ctest -V | |
#cmake --build . --config Release --target test | |
build-Windows: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: build and run | |
run: | | |
mkdir build | |
cd build | |
cmake .. -DCMAKE_GENERATOR_PLATFORM=x64 -DNANOSPLINE_HEADER_ONLY=Off | |
cmake --build . --config Release -j | |
cmake --build . --config Release --target run_unit_tests |