-
Notifications
You must be signed in to change notification settings - Fork 3
/
.travis.yml
33 lines (33 loc) · 1.24 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
language: python
services:
- rabbitmq
dist: trusty
sudo: true
python:
- '2.7'
- '3.5'
before_install:
- sudo apt-get install pkg-config cmake openssl libc-ares-dev
install:
- wget http://mosquitto.org/files/source/mosquitto-1.3.1.tar.gz
- tar xzf mosquitto-1.3.1.tar.gz
- cd mosquitto-1.3.1
- cmake .
- sudo make install
- cd ..
- npm install
- pip install -r requirements.pip
before_script:
- mosquitto -d
script:
- npm test
deploy:
provider: pypi
user: jonnor
skip_upload_docs: true
password:
secure: tfMmX8XohObYT76vdF0qTzS38MtIwodQMw/E43daNTmV/P1qrsoUyI3JA69IHWynpXIFJnoF4r/BW2lNm6ZKctoFY0MJGQdzLWs9yblmFsf8BFubOYHFOzQtMGu7rjYxAvIKnKWpeLibb7RPWKSgmQd1hN5MEONwrItpy7uM/48zOEpVsH54BlOlDG5mWWdA1cXnStW3ORGEdgYLH2mIgFtwsMeLAhKV1vQvltR67/bXtofjDY8XAHrQtHLTOA/se3wwkoyzfXh1c0ZXAR7Ebq+nFU+tFeZcw+bIBN5QwimbnS8O6W91urKHmb2aBd2kHTYtOQssU/yNzYBPP3W5f3V42Xl5MlNS0XEQO/bdDLIRVkXOsrza8IyV/NUClgMnGiEToeiC54pd5PB8AW8R4/tZst9fuox16Iyy3dH7wyO4cFG/QwuUOdnjORB9IyqdgpH2/Kr1WXKTAJ7cLo4mntnAqsPpHDvyXtGJbGHc5GQR92gpWv9oP/wnOY2oUgZLrAWQKzoFqMoorHTySaSQH1pGr86Xr27eKGuL0GwuxydMRXVQhd9uCKsDt0vIL0cM0zfJfz4khcxseI0MCpoBboZNWkfUH2pITqH15SPgaoqRcFP+DQVN8gMfUYSJMjEY0WRFVn32+90yEB0r1auzkzdE/ON07fPW0MyS4SppdXc=
on:
tags: true
repo: msgflo/msgflo-python
branch: master