summaryrefslogtreecommitdiffhomepage
path: root/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml24
1 files changed, 21 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml
index dcb871d5..89783aa7 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,13 +1,31 @@
language: go
-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:
- - go test -v ./...
+ - bash test/scenario_test/ci-scripts/travis-build-script.sh $SCENARIO
-sudo: false