File tree 2 files changed +11
-2
lines changed 2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -17,15 +17,15 @@ x_base_steps:
17
17
# before_install for jobs that require dep
18
18
- &dep_before_install
19
19
before_install :
20
- - curl -Lo dep https://github.com/golang/dep/releases/download/v0.5.0 /dep-linux-amd64 && chmod +x dep && sudo mv dep /usr/local/bin/
20
+ - curl -Lo dep https://github.com/golang/dep/releases/download/v0.5.3 /dep-linux-amd64 && chmod +x dep && sudo mv dep /usr/local/bin/
21
21
- travis_retry dep ensure -v
22
22
# before_install for jobs that require go builds and do not run for doc-only changes
23
23
- &go_before_install
24
24
before_install :
25
25
# hack/ci/check-doc-only-update.sh needs to be sourced so
26
26
# that it can properly exit the test early with success
27
27
- source hack/ci/check-doc-only-update.sh
28
- - curl -Lo dep https://github.com/golang/dep/releases/download/v0.5.0 /dep-linux-amd64 && chmod +x dep && sudo mv dep /usr/local/bin/
28
+ - curl -Lo dep https://github.com/golang/dep/releases/download/v0.5.3 /dep-linux-amd64 && chmod +x dep && sudo mv dep /usr/local/bin/
29
29
- travis_retry dep ensure -v
30
30
31
31
# Base go, ansbile, and helm job
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+
3
+ set -e
4
+
5
+ # Install dep
6
+ curl -Lo dep https://github.com/golang/dep/releases/download/v0.5.3/dep-linux-amd64 && chmod +x dep && mv dep /usr/local/bin/
7
+
8
+ # Ensure vendor directory is up-to-date
9
+ make dep
You can’t perform that action at this time.
0 commit comments