summaryrefslogtreecommitdiffhomepage
path: root/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml18
1 files changed, 15 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml
index e885b517..6b82e76a 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -57,15 +57,27 @@ matrix:
#
# Cross-compile
#
+# Note: We use "before_script" to enable "go env" settings. The following keeps
+# "env" sections as just markers of Travis-CI Web UI.
+# See https://github.com/travis-ci/travis-ci/issues/6126
- <<: *_build
env:
- - GOOS=windows
+ - GOOS="windows"
+ before_script:
+ - export GOOS="windows"
+ - go env
- <<: *_build
env:
- - GOOS=freebsd
+ - GOOS="freebsd"
+ before_script:
+ - export GOOS="freebsd"
+ - go env
- <<: *_build
env:
- - GOOS=darwin
+ - GOOS="darwin"
+ before_script:
+ - export GOOS="darwin"
+ - go env
#
# Misc
#