Skip to content

Commit d9eb77c

Browse files
committed
.travis.yml: remove dep steps
1 parent 81c3099 commit d9eb77c

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

Diff for: .travis.yml

-6
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,6 @@ env:
1717
# so we can use it to create a bunch of common build step
1818
# YAML anchors which we use in our build jobs.
1919
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
2520
# before_install for jobs that require go builds and do not run for doc-only changes
2621
- &go_before_install
2722
before_install:
@@ -86,7 +81,6 @@ jobs:
8681
name: Unit, Sanity, and Markdown Tests
8782
# Currently, prow/api-ci tests all PRs that target master; use travis for post merge testing and non-master PRs
8883
if: type != pull_request OR branch != master
89-
<<: *dep_before_install
9084
script: make test/sanity test/unit test/markdown
9185
after_success: echo 'Tests Passed'
9286
after_failure: echo 'Failure in unit, sanity, or markdown test'

Diff for: Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ all: format test build/operator-sdk
3030
format:
3131
$(Q)go fmt $(PKGS)
3232

33-
# TODO: change to mod-update once prow CI command has changed.
33+
# TODO: change to mod once prow CI command has changed.
3434
dep:
3535
ifeq ($(BUILD_VERBOSE),1)
3636
go mod vendor -v

0 commit comments

Comments
 (0)