forked from ralphbean/taskw
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
30 lines (30 loc) · 684 Bytes
/
.travis.yml
File metadata and controls
30 lines (30 loc) · 684 Bytes
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
sudo: required
dist: trusty
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
env:
- TASKWARRIOR=v2.5.0
- TASKWARRIOR=v2.5.1
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y python-dev cmake build-essential libgnutls28-dev uuid-dev gnutls-bin chrpath libssl-dev libfontconfig1-dev
- git clone https://github.com/GothenburgBitFactory/taskwarrior.git
- cd taskwarrior
- git checkout $TASKWARRIOR
- cmake .
- make
- sudo make install
- task --version
- cd ../
install: python setup.py install
script: python setup.py test
notifications:
email: true
irc:
- "irc.freenode.net#threebean"
on_success: change
on_failure: always