IXWebSocket/.travis.yml

42 lines
896 B
YAML
Raw Normal View History

language: bash
2019-01-30 02:50:19 +01: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:
include:
# macOS
- os: osx
compiler: clang
script:
- python test/run.py
- make ws
2019-06-09 23:27:45 +02:00
# Linux
- os: linux
dist: xenial
2019-06-09 23:27:45 +02:00
script:
- python test/run.py
- make ws
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
# Windows
2019-06-11 07:10:43 +02:00
# - 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