IXWebSocket/.travis.yml

35 lines
613 B
YAML
Raw Normal View History

language: bash
2019-01-29 17:50:19 -08:00
matrix:
include:
# macOS
- os: osx
compiler: clang
script:
- python test/run.py
# Linux
- os: linux
dist: xenial
script:
- python test/run.py
env:
2019-05-13 17:35:21 -07: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-07 20:49:03 -08:00
# Windows
- os: windows
env:
- CMAKE_PATH="/c/Program Files/CMake/bin"
script:
- export PATH=$CMAKE_PATH:$PATH
- python test/run.py