Skip to content

Commit ee8731a

Browse files
authored
Merge pull request kubernetes#91012 from justaugustus/verify-external
verify: Exclude verify-external-dependencies from make verify
2 parents 04deee9 + edb98fb commit ee8731a

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

hack/make-rules/verify.sh

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,14 @@ if [[ ${EXCLUDE_TYPECHECK:-} =~ ^[yY]$ ]]; then
5252
)
5353
fi
5454

55-
56-
# Exclude vendor checks in certain cases, if they're running in a separate job.
55+
# Exclude dependency checks in certain cases, if they're running in a separate job.
56+
# From @cblecker: We can't change the variable name here, unless we update it throughout
57+
# test-infra (and we would need to pick it backwards).
5758
if [[ ${EXCLUDE_GODEP:-} =~ ^[yY]$ ]]; then
5859
EXCLUDED_PATTERNS+=(
59-
"verify-vendor.sh" # runs in separate godeps job
60-
"verify-vendor-licenses.sh" # runs in separate godeps job
60+
"verify-external-dependencies-version.sh" # runs in separate dependencies job
61+
"verify-vendor.sh" # runs in separate dependencies job
62+
"verify-vendor-licenses.sh" # runs in separate dependencies job
6163
)
6264
fi
6365

@@ -75,6 +77,7 @@ QUICK_PATTERNS+=(
7577
"verify-api-groups.sh"
7678
"verify-bazel.sh"
7779
"verify-boilerplate.sh"
80+
"verify-external-dependencies-version.sh"
7881
"verify-vendor-licenses.sh"
7982
"verify-gofmt.sh"
8083
"verify-imports.sh"

0 commit comments

Comments
 (0)