mirror of https://github.com/knative/pkg.git
Auto-update dependencies (#1090)
Produced via: `dep ensure -update knative.dev/test-infra` /assign n3wscott /cc n3wscott
This commit is contained in:
parent
602d92f69b
commit
3d1ee74415
|
|
@ -1323,14 +1323,14 @@
|
||||||
|
|
||||||
[[projects]]
|
[[projects]]
|
||||||
branch = "master"
|
branch = "master"
|
||||||
digest = "1:d2545cd71ef3604f5d2d792e569c6e3a4df31e336d76e709b0b8bac759c0faf7"
|
digest = "1:691951c6805590983ccea7c6dbca360bcb58af5f4d60f75af9499903bb3039e9"
|
||||||
name = "knative.dev/test-infra"
|
name = "knative.dev/test-infra"
|
||||||
packages = [
|
packages = [
|
||||||
"scripts",
|
"scripts",
|
||||||
"tools/dep-collector",
|
"tools/dep-collector",
|
||||||
]
|
]
|
||||||
pruneopts = "UT"
|
pruneopts = "UT"
|
||||||
revision = "c7c50ccd8082344a5f8ea85a5ae8de59308d325c"
|
revision = "279d938f5e19db2550bea7f71f4cdb97e0d84128"
|
||||||
|
|
||||||
[[projects]]
|
[[projects]]
|
||||||
digest = "1:8730e0150dfb2b7e173890c8b9868e7a273082ef8e39f4940e3506a481cf895c"
|
digest = "1:8730e0150dfb2b7e173890c8b9868e7a273082ef8e39f4940e3506a481cf895c"
|
||||||
|
|
|
||||||
|
|
@ -231,9 +231,12 @@ function create_test_cluster() {
|
||||||
[[ -n "${GCP_PROJECT}" ]] && test_cmd_args+=" --gcp-project ${GCP_PROJECT}"
|
[[ -n "${GCP_PROJECT}" ]] && test_cmd_args+=" --gcp-project ${GCP_PROJECT}"
|
||||||
[[ -n "${E2E_SCRIPT_CUSTOM_FLAGS[@]}" ]] && test_cmd_args+=" ${E2E_SCRIPT_CUSTOM_FLAGS[@]}"
|
[[ -n "${E2E_SCRIPT_CUSTOM_FLAGS[@]}" ]] && test_cmd_args+=" ${E2E_SCRIPT_CUSTOM_FLAGS[@]}"
|
||||||
local extra_flags=()
|
local extra_flags=()
|
||||||
if (( IS_BOSKOS )); then # Add arbitrary duration, wait for Boskos projects acquisition before error out
|
if (( IS_BOSKOS )); then
|
||||||
|
# Add arbitrary duration, wait for Boskos projects acquisition before error out
|
||||||
extra_flags+=(--boskos-wait-duration=20m)
|
extra_flags+=(--boskos-wait-duration=20m)
|
||||||
else # Only let kubetest tear down the cluster if not using Boskos, it's done by Janitor if using Boskos
|
elif (( ! SKIP_TEARDOWNS )); then
|
||||||
|
# Only let kubetest tear down the cluster if not using Boskos and teardowns are not expected to be skipped,
|
||||||
|
# it's done by Janitor if using Boskos
|
||||||
extra_flags+=(--down)
|
extra_flags+=(--down)
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue