2019-05-13 16:51:58 -07:00
|
|
|
language: bash
|
2019-01-29 17:50:19 -08:00
|
|
|
|
|
|
|
matrix:
|
2019-05-13 16:51:58 -07:00
|
|
|
include:
|
|
|
|
# macOS
|
|
|
|
- os: osx
|
|
|
|
compiler: clang
|
2019-05-15 15:18:27 -07:00
|
|
|
script:
|
|
|
|
- python test/run.py
|
2019-05-13 16:51:58 -07:00
|
|
|
|
|
|
|
# Linux
|
|
|
|
- os: linux
|
|
|
|
dist: xenial
|
2019-05-15 15:18:27 -07:00
|
|
|
script:
|
|
|
|
- python test/run.py
|
2019-05-13 16:51:58 -07:00
|
|
|
env:
|
2019-05-13 17:35:21 -07:00
|
|
|
- CC=gcc
|
|
|
|
- CXX=g++
|
2019-05-13 16:51:58 -07:00
|
|
|
|
2019-05-13 17:06:56 -07:00
|
|
|
# Clang + Linux disabled for now
|
|
|
|
# - os: linux
|
|
|
|
# dist: xenial
|
|
|
|
# script: python test/run.py
|
|
|
|
# env:
|
|
|
|
# - CC=clang
|
|
|
|
# - CXX=clang++
|
2019-01-07 20:49:03 -08:00
|
|
|
|
2019-05-13 16:51:58 -07:00
|
|
|
# Windows
|
|
|
|
- os: windows
|
|
|
|
env:
|
|
|
|
- CMAKE_PATH="/c/Program Files/CMake/bin"
|
|
|
|
script:
|
|
|
|
- export PATH=$CMAKE_PATH:$PATH
|
|
|
|
- python test/run.py
|