This repository was archived by the owner on Jul 18, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ pipeline {
20
20
dir(' src/github.com/docker/app' ) {
21
21
checkout scm
22
22
sh ' make -f docker.Makefile lint'
23
- sh ' make -f docker.Makefile vendor'
23
+ sh ' make -f docker.Makefile check- vendor'
24
24
}
25
25
}
26
26
post {
Original file line number Diff line number Diff line change @@ -109,7 +109,12 @@ lint: ## run linter(s)
109
109
docker run --rm $(LINT_IMAGE_NAME ) make lint
110
110
111
111
vendor : build_dev_image
112
- $(info Vendoring...)
112
+ $(info Update Vendoring...)
113
+ docker run --rm -v " $( CURDIR) " :/go/src/github.com/docker/app/ $(DEV_IMAGE_NAME ) make vendor
114
+ $(warning You may need to reset permissions on vendor/* )
115
+
116
+ check-vendor : build_dev_image
117
+ $(info Check Vendoring...)
113
118
docker run --rm $(DEV_IMAGE_NAME ) sh -c " make vendor && hack/check-git-diff vendor"
114
119
115
120
specification/bindata.go : specification/schemas/* .json build_dev_image
@@ -137,4 +142,4 @@ push-invocation-image:
137
142
help : # # this help
138
143
@awk ' BEGIN {FS = ":.*?## "} /^[a-zA-Z_-]+:.*?## / {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}' $(MAKEFILE_LIST ) | sort
139
144
140
- .PHONY : lint test-e2e test-unit test cli-cross cross e2e-cross coverage gradle-test shell build_dev_image tars vendor schemas help invocation-image save-invocation-image save-invocation-image-tag push-invocation-image
145
+ .PHONY : lint test-e2e test-unit test cli-cross cross e2e-cross coverage gradle-test shell build_dev_image tars vendor check-vendor schemas help invocation-image save-invocation-image save-invocation-image-tag push-invocation-image
You can’t perform that action at this time.
0 commit comments