From 3a55c7aaba9ae647a7bf0eb7a0f8b27c6caf5e12 Mon Sep 17 00:00:00 2001 From: Benjamin Sergeant Date: Thu, 16 May 2019 07:01:15 -0700 Subject: [PATCH] build ws on travis (mac + linux) --- .travis.yml | 2 ++ makefile | 3 +++ 2 files changed, 5 insertions(+) diff --git a/.travis.yml b/.travis.yml index 5702463a..5fadfeec 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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++ diff --git a/makefile b/makefile index b683cbeb..8d5f15c4 100644 --- a/makefile +++ b/makefile @@ -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