summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Unterwurzacher2018-07-08 14:49:57 +0200
committerJakob Unterwurzacher2018-07-08 14:49:57 +0200
commit770c23db7c97a26ecbd018677d5cc9f985aaae45 (patch)
tree8e1845381e173e6c037af8019649ee533400284a
parent7f5a97e843a47d7eb42bd4b0f4d2c27fbb7f4843 (diff)
travis: run dep ensure in verbose mode
But make the output fold to reduce clutter. Move wget to the install section, where output is folded by default.
-rw-r--r--.travis.yml29
1 files changed, 16 insertions, 13 deletions
diff --git a/.travis.yml b/.travis.yml
index d3b66bd..922d436 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,5 +1,9 @@
language: go
+# fuse on travis
+sudo: required
+dist: trusty
+
git:
depth: 100
@@ -14,8 +18,16 @@ go:
- 1.10.x
- stable
+before_install:
+ - sudo apt-get install -qq fuse
+ - sudo modprobe fuse
+ - sudo chmod 666 /dev/fuse
+ - sudo chown root:$USER /etc/fuse.conf
+
install:
- - go get .
+ - go get -v .
+ - wget https://github.com/golang/dep/releases/download/v0.3.2/dep-linux-amd64 -O dep
+ - chmod +x dep
script:
- openssl version
@@ -26,16 +38,7 @@ script:
- ./test.bash
- ./crossbuild.bash
- echo "rebuild with locked dependencies"
- - wget https://github.com/golang/dep/releases/download/v0.3.2/dep-linux-amd64 -O dep
- - chmod +x dep
- - ./dep ensure
+ - echo travis_fold:start:dep
+ - ./dep ensure -v
+ - echo travis_fold:end:dep
- ./build.bash
-
-# fuse on travis
-sudo: required
-dist: trusty
-before_install:
- - sudo apt-get install -qq fuse
- - sudo modprobe fuse
- - sudo chmod 666 /dev/fuse
- - sudo chown root:$USER /etc/fuse.conf