Merge pull request #4 from skrah/update_copyright #3
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: Tests | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
vcbuild64: | |
name: "Windows Release|x64" | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: | | |
mkdir build | |
cd build | |
cmake .. | |
cmake --build . --config Release --target all | |
cmake --build . --config Release --target ntest | |
cmake --build . --config Release --target xtest | |
cmake --build . --config Release --target nptest | |
cmake --build . --config Release --target xptest | |
cmake --build . --config Release --target gptest | |
shell: cmd | |
vcbuild32: | |
name: "Windows Release|x86" | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: | | |
mkdir build | |
cd build | |
cmake .. | |
cmake --build . --config Release --target all | |
cmake --build . --config Release --target ntest | |
cmake --build . --config Release --target xtest | |
cmake --build . --config Release --target nptest | |
cmake --build . --config Release --target xptest | |
cmake --build . --config Release --target gptest | |
shell: cmd | |
osx_x64: | |
name: 'OSX x64' | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: | | |
mkdir build | |
cd build | |
cmake .. | |
cmake --build . --config Release --target all | |
cmake --build . --config Release --target ntest | |
cmake --build . --config Release --target xtest | |
cmake --build . --config Release --target nptest | |
cmake --build . --config Release --target xptest | |
cmake --build . --config Release --target gptest | |
ubuntu_x64: | |
name: 'Ubuntu x64' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: | | |
mkdir build | |
cd build | |
cmake .. | |
cmake --build . --config Release --target all | |
cmake --build . --config Release --target ntest | |
cmake --build . --config Release --target xtest | |
cmake --build . --config Release --target nptest | |
cmake --build . --config Release --target xptest | |
cmake --build . --config Release --target gptest |