summaryrefslogtreecommitdiffhomepage
path: root/.travis.yml
diff options
context:
space:
mode:
authorHiroshi Yokoi <yokoi.hiroshi@po.ntts.co.jp>2016-03-14 14:51:54 +0900
committerHiroshi Yokoi <yokoi.hiroshi@po.ntts.co.jp>2016-03-14 15:14:18 +0900
commit483fc497aca18cd6572f6ae12f0d52486d17e3cd (patch)
tree2188b41d82ad0afa755f64d462c1dcb47d6f688d /.travis.yml
parent376d5b3bb8fa65ace77bc3423e16ee2078038058 (diff)
scenario_test: run scenario test on travis
Signed-off-by: Hiroshi Yokoi <yokoi.hiroshi@po.ntts.co.jp>
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