mosquitto/travis-install.sh
Roger A. Light 1d3949bce0 Improve broker generated client ids for the non-Linux case.
Removes libuuid dependency.
2018-12-05 16:39:45 +00:00

15 lines
354 B
Bash
Executable File

#!/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 xsltproc docbook-xsl libcunit1-dev
fi
if [ "$TRAVIS_OS_NAME" == "osx" ]; then
brew update
brew install c-ares openssl libwebsockets
fi
sudo pip install paho-mqtt