2019-05-14 01:51:58 +02:00
|
|
|
language: bash
|
2019-01-30 02:50:19 +01:00
|
|
|
|
2019-06-02 02:41:48 +02:00
|
|
|
# See https://github.com/amaiorano/vectrexy/blob/master/.travis.yml
|
|
|
|
# for ideas on installing vcpkg
|
|
|
|
|
2019-01-30 02:50:19 +01:00
|
|
|
matrix:
|
2019-05-14 01:51:58 +02:00
|
|
|
include:
|
|
|
|
# macOS
|
|
|
|
- os: osx
|
|
|
|
compiler: clang
|
2019-05-16 00:18:27 +02:00
|
|
|
script:
|
|
|
|
- python test/run.py
|
2019-05-16 23:25:31 +02:00
|
|
|
- make ws
|
2019-05-14 01:51:58 +02:00
|
|
|
|
2019-06-09 23:27:45 +02:00
|
|
|
# Linux
|
2019-06-03 05:46:20 +02:00
|
|
|
- os: linux
|
|
|
|
dist: xenial
|
2019-06-09 23:27:45 +02:00
|
|
|
script:
|
|
|
|
- python test/run.py
|
|
|
|
- make ws
|
2019-06-03 05:46:20 +02:00
|
|
|
env:
|
2019-06-09 23:27:45 +02:00
|
|
|
- CC=gcc
|
|
|
|
- CXX=g++
|
|
|
|
|
|
|
|
# Clang + Linux disabled for now
|
|
|
|
# - os: linux
|
|
|
|
# dist: xenial
|
|
|
|
# script: python test/run.py
|
|
|
|
# env:
|
|
|
|
# - CC=clang
|
|
|
|
# - CXX=clang++
|
2019-01-08 05:49:03 +01:00
|
|
|
|
2019-06-24 03:32:18 +02:00
|
|
|
Windows
|
|
|
|
- os: windows
|
|
|
|
env:
|
|
|
|
- CMAKE_PATH="/c/Program Files/CMake/bin"
|
|
|
|
script:
|
|
|
|
- export PATH=$CMAKE_PATH:$PATH
|
|
|
|
# - cmake -DUSE_TLS=1 -DUSE_WS=1 -DUSE_MBED_TLS=1 -DUSE_VENDORED_THIRD_PARTY=1 .
|
|
|
|
# - cmake --build --parallel .
|
|
|
|
- python test/run.py
|