summaryrefslogtreecommitdiffhomepage
path: root/.travis.yml
blob: 89783aa7e31a25c76a8fd1e9622620d5269660f5 (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
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