mirror of
https://github.com/kubernetes-sigs/prometheus-adapter.git
synced 2026-04-05 17:27:51 +00:00
chore: remove vendor directory
Signed-off-by: Damien Grisonnet <dgrisonn@redhat.com>
This commit is contained in:
parent
f3aafa7c8f
commit
39b782bce9
4015 changed files with 10 additions and 1327104 deletions
20
Makefile
20
Makefile
|
|
@ -58,10 +58,6 @@ push: ./manifest-tool $(addprefix push-,$(ALL_ARCH))
|
|||
curl -sSL https://github.com/estesp/manifest-tool/releases/download/v0.5.0/manifest-tool-linux-amd64 > manifest-tool
|
||||
chmod +x manifest-tool
|
||||
|
||||
vendor:
|
||||
go mod tidy
|
||||
go mod vendor
|
||||
|
||||
test:
|
||||
CGO_ENABLED=0 go test ./cmd/... ./pkg/...
|
||||
|
||||
|
|
@ -71,16 +67,20 @@ verify-gofmt:
|
|||
gofmt:
|
||||
./hack/gofmt-all.sh
|
||||
|
||||
go-mod:
|
||||
go mod tidy
|
||||
go mod vendor
|
||||
go mod verify
|
||||
|
||||
verify: verify-gofmt verify-generated test
|
||||
verify: verify-gofmt verify-deps verify-generated test
|
||||
|
||||
.PHONY: update
|
||||
update: update-generated
|
||||
|
||||
# Dependencies
|
||||
# ------------
|
||||
|
||||
.PHONY: verify-deps
|
||||
verify-deps:
|
||||
go mod verify
|
||||
go mod tidy
|
||||
@git diff --exit-code -- go.mod go.sum
|
||||
|
||||
# Generated
|
||||
# ---------
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue