build ws on travis (mac + linux)

This commit is contained in:
Benjamin Sergeant 2019-05-16 07:01:15 -07:00
parent dae21e7681
commit bb0c6f9a8a
2 changed files with 5 additions and 0 deletions

View File

@ -7,12 +7,14 @@ matrix:
compiler: clang
script:
- python test/run.py
- make ws
# Linux
- os: linux
dist: xenial
script:
- python test/run.py
- make ws
env:
- CC=gcc
- CXX=g++

View File

@ -11,6 +11,9 @@ install: brew
brew:
mkdir -p build && (cd build ; cmake -DUSE_TLS=1 -DUSE_WS=1 .. ; make -j install)
ws:
mkdir -p build && (cd build ; cmake -DUSE_TLS=1 -DUSE_WS=1 .. ; make -j)
uninstall:
xargs rm -fv < build/install_manifest.txt