mirror of https://github.com/k3s-io/k3s
Merge pull request #71921 from cblecker/split-godep
Provide option to split godeps tests from main verify jobpull/564/head
commit
c172d61ec1
|
@ -30,8 +30,24 @@ EXCLUDED_PATTERNS=(
|
|||
"verify-linkcheck.sh" # runs in separate Jenkins job once per day due to high network usage
|
||||
"verify-test-owners.sh" # TODO(rmmh): figure out how to avoid endless conflicts
|
||||
"verify-*-dockerized.sh" # Don't run any scripts that intended to be run dockerized
|
||||
)
|
||||
|
||||
# Exclude typecheck in certain cases, if they're running in a separate job.
|
||||
if [[ ${EXCLUDE_TYPECHECK:-} =~ ^[yY]$ ]]; then
|
||||
EXCLUDED_PATTERNS+=(
|
||||
"verify-typecheck.sh" # runs in separate typecheck job
|
||||
)
|
||||
fi
|
||||
|
||||
|
||||
# Exclude godep checks in certain cases, if they're running in a separate job.
|
||||
if [[ ${EXCLUDE_GODEP:-} =~ ^[yY]$ ]]; then
|
||||
EXCLUDED_PATTERNS+=(
|
||||
"verify-godeps.sh" # runs in separate godeps job
|
||||
"verify-staging-godeps.sh" # runs in separate godeps job
|
||||
"verify-godep-licenses.sh" # runs in separate godeps job
|
||||
)
|
||||
fi
|
||||
|
||||
# Only run whitelisted fast checks in quick mode.
|
||||
# These run in <10s each on enisoc's workstation, assuming that
|
||||
|
|
Loading…
Reference in New Issue