aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml22
1 files changed, 14 insertions, 8 deletions
diff --git a/.travis.yml b/.travis.yml
index 50e9672a..521902f1 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,11 +1,14 @@
-language: go
-
-go:
- - "1.9"
- - "1.10.x"
-
-before_install:
- - go get github.com/mitchellh/gox
+matrix:
+ include:
+ - language: go
+ go: "1.9"
+ - language: go
+ go: "1.10.x"
+ - language: node_js
+ node_js: 8
+ before_install:
+ - cd webui
+ after_success: []
install:
- make install
@@ -13,6 +16,9 @@ install:
script:
- make test
+before_install:
+ - go get github.com/mitchellh/gox
+
after_success:
- if [ ! -z "$TRAVIS_TAG" ]; then gox -tags=deploy_build -output "dist/{{.Dir}}_{{.OS}}_{{.Arch}}"; fi