blob: c7a8735a5d3a77f887ea8ce47b8a58e2f598f223 (
plain)
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
|
language: go
sudo: required
services:
- docker
go:
- 1.3
- 1.4
- 1.5
- 1.6
- tip
env:
- SCENARIO=false
- SCENARIO=true
matrix:
exclude:
- go: 1.3
env: SCENARIO=true
- go: 1.4
env: SCENARIO=true
- go: 1.5
env: SCENARIO=true
- go: tip
env: SCENARIO=true
script:
- bash test/scenario_test/ci-scripts/travis-build-script.sh $SCENARIO
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/5a843ba64bd0f469337b
|