File tree 3 files changed +2
-1
lines changed
3 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ EXCLUDED_CHECKS=(
26
26
" verify-linkcheck.sh" # runs in separate Jenkins job once per day due to high network usage
27
27
" verify-govet.sh" # it has a separate make vet target
28
28
" verify-staging-client-go.sh" # TODO: enable the script after 1.5 code freeze
29
+ " verify-test-owners.sh" # TODO(rmmh): figure out how to avoid endless conflicts
29
30
)
30
31
31
32
function is-excluded {
Original file line number Diff line number Diff line change @@ -46,4 +46,5 @@ if [[ ${#targets[@]} -eq 0 ]]; then
46
46
targets=$( go list -e ./... | egrep -v " /(third_party|vendor|staging|clientset_generated)/" )
47
47
fi
48
48
49
+ set -x
49
50
go vet " ${goflags[@]: +${goflags[@]} } " ${targets[@]}
Original file line number Diff line number Diff line change @@ -24,6 +24,5 @@ source "${KUBE_ROOT}/hack/lib/init.sh"
24
24
cd " ${KUBE_ROOT} "
25
25
if ! hack/update_owners.py --check; then
26
26
echo ' Run ./hack/update_owners.py to fix it'
27
- exit # TODO(rmmh): fix Github merging to respect .gitattributes
28
27
exit 1
29
28
fi
You can’t perform that action at this time.
0 commit comments