Skip to content

Commit 27411b6

Browse files
committed
*: remove references to 'make dep'
1 parent 79c8e14 commit 27411b6

File tree

4 files changed

+5
-10
lines changed

4 files changed

+5
-10
lines changed

.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'

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ mod-update:
4343
clean:
4444
$(Q)rm -rf build
4545

46-
.PHONY: all test format mod clean
46+
.PHONY: all test format mod mod-update clean
4747

4848
install:
4949
$(Q)go install -gcflags "all=-trimpath=${GOPATH}" -asmflags "all=-trimpath=${GOPATH}" $(BUILD_PATH)

commands/operator-sdk/cmd/add/crd.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,8 @@ func verifyCRDFlags() error {
118118
return nil
119119
}
120120

121-
// verifyCRDDeployPath checks if the path <project-name>/deploy sub-directory is exists, and that is rooted under $GOPATH
121+
// verifyCRDDeployPath checks if the path <project-name>/deploy sub-directory
122+
// exists.
122123
func verifyCRDDeployPath() error {
123124
wd, err := os.Getwd()
124125
if err != nil {

doc/helm/user-guide.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ cd $GOPATH/src/github.com/operator-framework
2828
git clone https://github.com/operator-framework/operator-sdk
2929
cd operator-sdk
3030
git checkout master
31-
make dep
31+
make mod
3232
make install
3333
```
3434

@@ -362,4 +362,4 @@ kubectl delete -f deploy/crds/example_v1alpha1_nginx_crd.yaml
362362
[minikube_tool]:https://github.com/kubernetes/minikube#installation
363363
[helm_charts]:https://helm.sh/docs/developing_charts/
364364
[helm_values]:https://helm.sh/docs/using_helm/#customizing-the-chart-before-installing
365-
[quay_link]:https://quay.io
365+
[quay_link]:https://quay.io

0 commit comments

Comments
 (0)