IXWebSocket/.travis.yml

37 lines
649 B
YAML
Raw Normal View History

language: bash
2019-01-30 02:50:19 +01:00
matrix:
include:
# macOS
- os: osx
compiler: clang
script:
- python test/run.py
- make ws
# Linux
- os: linux
dist: xenial
script:
- python test/run.py
- make ws
env:
2019-05-14 02:35:21 +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
- os: windows
env:
- CMAKE_PATH="/c/Program Files/CMake/bin"
script:
- export PATH=$CMAKE_PATH:$PATH
- python test/run.py