Skip to content

Commit 8581e2f

Browse files
a1012112796wxiaoguangzeripath6543
authored
update description about vendoring in CONTRIBUTING.md (#18280)
* update description about vendoring in CONTRIBUTING.md follow #18277 Signed-off-by: a1012112796 <1012112796@qq.com> * Update CONTRIBUTING.md Co-authored-by: wxiaoguang <wxiaoguang@gmail.com> * fix and readd test-vendor step * remove vendor from .gitattributes @silverwind * simplify go mod check Signed-off-by: a1012112796 <1012112796@qq.com> * Revert "remove vendor from .gitattributes @silverwind" This reverts commit 4789e70. Co-authored-by: wxiaoguang <wxiaoguang@gmail.com> Co-authored-by: zeripath <art27@cantab.net> Co-authored-by: 6543 <6543@obermui.de>
1 parent 076cead commit 8581e2f

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

CONTRIBUTING.md

+3-4
Original file line numberDiff line numberDiff line change
@@ -91,13 +91,12 @@ Here's how to run the test suite:
9191

9292
## Vendoring
9393

94-
We keep a cached copy of dependencies within the `vendor/` directory,
95-
managing updates via [Modules](https://golang.org/cmd/go/#hdr-Module_maintenance).
94+
We manage dependencies via [Go Modules](https://golang.org/cmd/go/#hdr-Module_maintenance), more details: [go mod](https://go.dev/ref/mod).
9695

97-
Pull requests should only include `vendor/` updates if they are part of
96+
Pull requests should only include `go.mod`, `go.sum` updates if they are part of
9897
the same change, be it a bugfix or a feature addition.
9998

100-
The `vendor/` update needs to be justified as part of the PR description,
99+
The `go.mod`, `go.sum` update needs to be justified as part of the PR description,
101100
and must be verified by the reviewers and/or merger to always reference
102101
an existing upstream commit.
103102

Makefile

+6-5
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ checks: checks-frontend checks-backend
295295
checks-frontend: lockfile-check svg-check
296296

297297
.PHONY: checks-backend
298-
checks-backend: swagger-check swagger-validate
298+
checks-backend: gomod-check swagger-check swagger-validate
299299

300300
.PHONY: lint
301301
lint: lint-frontend lint-backend
@@ -369,11 +369,12 @@ unit-test-coverage:
369369
vendor:
370370
$(GO) mod tidy && $(GO) mod vendor
371371

372-
.PHONY: test-vendor
373-
test-vendor: vendor
374-
@diff=$$(git diff vendor/); \
372+
.PHONY: gomod-check
373+
gomod-check:
374+
@$(GO) mod tidy
375+
@diff=$$(git diff go.sum); \
375376
if [ -n "$$diff" ]; then \
376-
echo "Please run 'make vendor' and commit the result:"; \
377+
echo "Please run '$(GO) mod tidy' and commit the result:"; \
377378
echo "$${diff}"; \
378379
exit 1; \
379380
fi

0 commit comments

Comments
 (0)