-
Notifications
You must be signed in to change notification settings - Fork 33
/
.travis.yml
54 lines (48 loc) · 1 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
sudo: required
language: go
matrix:
include:
- go: 1.5
os: linux
env: REPORT_COVERAGE=true GO15VENDOREXPERIMENT=1
sudo: required
dist: trusty
- go: 1.5
os: osx
env: REPORT_COVERAGE=false GO15VENDOREXPERIMENT=1
- go: tip
os: linux
env: REPORT_COVERAGE=false
sudo: required
dist: trusty
- go: tip
os: osx
env: REPORT_COVERAGE=false
fast_finish: true
allow_failures:
- go: tip
addons:
apt:
sources:
# - deadsnakes
- sourceline: 'ppa:deadsnakes/ppa'
#- sourceline: 'ppa:canonical-qt5-edgers/ubuntu1204-qt5'
packages:
- libonig-dev
- python3.5
- python3.5-dev
- qtdeclarative5-private-dev
- qtbase5-private-dev
- libqt5opengl5
- libqt5opengl5-dev
install:
- make travis
script:
- make travis_test
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/3e692a5224c8490f19bd
on_success: change
on_failure: always
on_start: false