Travis helpers.

pull/211/merge
Roger A. Light 9 years ago
parent 8663d6aff7
commit e02019ee5b

@ -0,0 +1,5 @@
#!/bin/bash
if [ "$TRAVIS_OS_NAME" == "osx" ]; then
cmake .
fi

@ -0,0 +1,12 @@
#!/bin/bash
if [ "$TRAVIS_OS_NAME" == "linux" ]; then
sudo apt-get update -qq
sudo apt-get install -y debhelper libc-ares-dev libssl-dev libwrap0-dev python-all python3-all uthash-dev uuid-dev libuuid1 xsltproc docbook-xsl
fi
if [ "$TRAVIS_OS_NAME" == "osx" ]; then
brew update
brew install c-ares openssl libwebsockets
fi
Loading…
Cancel
Save