File tree 2 files changed +1
-7
lines changed
2 files changed +1
-7
lines changed Original file line number Diff line number Diff line change 17
17
# so we can use it to create a bunch of common build step
18
18
# YAML anchors which we use in our build jobs.
19
19
x_base_steps :
20
- # before_install for jobs that require dep
21
- - &dep_before_install
22
- before_install :
23
- - 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/
24
- - travis_retry dep ensure -v
25
20
# before_install for jobs that require go builds and do not run for doc-only changes
26
21
- &go_before_install
27
22
before_install :
86
81
name : Unit, Sanity, and Markdown Tests
87
82
# Currently, prow/api-ci tests all PRs that target master; use travis for post merge testing and non-master PRs
88
83
if : type != pull_request OR branch != master
89
- << : *dep_before_install
90
84
script : make test/sanity test/unit test/markdown
91
85
after_success : echo 'Tests Passed'
92
86
after_failure : echo 'Failure in unit, sanity, or markdown test'
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ all: format test build/operator-sdk
30
30
format :
31
31
$(Q ) go fmt $(PKGS )
32
32
33
- # TODO: change to mod-update once prow CI command has changed.
33
+ # TODO: change to mod once prow CI command has changed.
34
34
dep :
35
35
ifeq ($(BUILD_VERBOSE ) ,1)
36
36
go mod vendor -v
You can’t perform that action at this time.
0 commit comments