Commit 1527c32e authored by Otavio Rodolfo Piske's avatar Otavio Rodolfo Piske

Switch to cmake build on Travis CI so that it can, more easily, bypass lack of…

Switch to cmake build on Travis CI so that it can, more easily, bypass lack of OpenSSL in newer versions of OS X
Signed-off-by: 's avatarOtavio Rodolfo Piske <opiske@redhat.com>
parent 7eb9f924
......@@ -7,6 +7,10 @@ compiler:
os:
- linux
- osx
before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; brew install openssl ; fi
script:
- make
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then mkdir build.paho ; cd build.paho; cmake -DPAHO_WITH_SSL=TRUE -DPAHO_BUILD_DOCUMENTATION=FALSE -DPAHO_BUILD_SAMPLES=TRUE .. ; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then make ; fi
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment