We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3634564 + 1794891 commit c838130Copy full SHA for c838130
.travis.yml
@@ -12,6 +12,9 @@ os:
12
go:
13
- "1.12"
14
15
+env:
16
+ - GOPROXY=https://proxy.golang.org/
17
+
18
git:
19
depth: 3
20
@@ -21,7 +24,9 @@ services:
21
24
- docker
22
25
23
26
before_install:
-- go get -u github.com/golang/dep/cmd/dep
27
+# NOTE: The latest version of dep requires go 1.13
28
+- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then mkdir -p /Users/travis/gopath/bin; fi
29
+- GO111MODULE=on curl https://raw.githubusercontent.com/golang/dep/v0.5.1/install.sh | sh
30
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then GO111MODULE=on scripts/install_and_setup.sh; fi
31
32
before_script:
0 commit comments