1234567891011121314151617181920212223242526272829 |
- #!/bin/bash
- if [ "$TRAVIS_OS_NAME" == "linux" ]; then
- pwd
- sudo service mosquitto stop
-
- killall mosquitto
-
-
- git clone https://github.com/eclipse/paho.mqtt.testing.git
- cd paho.mqtt.testing/interoperability
- python3 startbroker.py -c localhost_testing.conf &
- cd ../..
- fi
- if [ "$TRAVIS_OS_NAME" == "osx" ]; then
- pwd
-
-
-
-
-
- git clone https://github.com/eclipse/paho.mqtt.testing.git
- cd paho.mqtt.testing/interoperability
- python3 startbroker.py -c localhost_testing.conf &
- cd ../..
- fi
|