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 compiler: clang
script: script:
- python test/run.py - python test/run.py
- make ws
# Linux # Linux
- os: linux - os: linux
dist: xenial dist: xenial
script: script:
- python test/run.py - python test/run.py
- make ws
env: env:
- CC=gcc - CC=gcc
- CXX=g++ - CXX=g++

View File

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