ba0fa36c2a
* close with params * ... * different generator * core size = 1 * disable more tests to get something working on windows * try to enable another test on windows * enable all OS * set proper version of linux * another try * try again with just env variables * Revert "core size = 1" This reverts commit29af74bba6
. * add windows and mac * Revert "close with params" This reverts commit6bb00b6788
.
32 lines
541 B
YAML
32 lines
541 B
YAML
language: bash
|
|
|
|
matrix:
|
|
include:
|
|
# macOS
|
|
- os: osx
|
|
compiler: clang
|
|
script: make test
|
|
|
|
# Linux
|
|
- os: linux
|
|
dist: xenial
|
|
script: python test/run.py
|
|
env:
|
|
- CC=clang
|
|
- CXX=clang++
|
|
|
|
- os: linux
|
|
dist: xenial
|
|
script: python test/run.py
|
|
env:
|
|
- CC=clang
|
|
- CXX=clang++
|
|
|
|
# Windows
|
|
- os: windows
|
|
env:
|
|
- CMAKE_PATH="/c/Program Files/CMake/bin"
|
|
script:
|
|
- export PATH=$CMAKE_PATH:$PATH
|
|
- python test/run.py
|