You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Remove DCO check from makefile, move to .travis.yml
The DCO check is primarily only relevant as part of CI, so it
doesn't need to be in the Makefile. A contributor looking to
validate their commits can run script/validate/dco.
Signed-off-by: Daniel Nephin <dnephin@gmail.com>
Copy file name to clipboardExpand all lines: Makefile
+1-9Lines changed: 1 addition & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -65,7 +65,7 @@ endif
65
65
TESTFLAGS ?= -v $(TESTFLAGS_RACE)
66
66
TESTFLAGS_PARALLEL ?= 8
67
67
68
-
.PHONY: clean all AUTHORS fmt vet lint dco build binaries test integration generate protos checkprotos coverage ci check help install uninstall vendor release
68
+
.PHONY: clean all AUTHORS build binaries test integration generate protos checkprotos coverage ci check help install uninstall vendor release
69
69
.DEFAULT: default
70
70
71
71
all: binaries
@@ -106,14 +106,6 @@ proto-fmt: ## check format of proto files
106
106
@test -z "$$(find . -path ./vendor -prune -o -name '*.proto' -type f -exec grep -Hn "Meta meta = " {} \; | grep -v '(gogoproto.nullable) = false' | tee /dev/stderr)"||\
107
107
(echo "$(ONI) meta fields in proto files must have option (gogoproto.nullable) = false"&& false)
0 commit comments