diff --git a/ci-operator/step-registry/openshift-extended/test/disruptive/openshift-extended-test-disruptive-commands.sh b/ci-operator/step-registry/openshift-extended/test/disruptive/openshift-extended-test-disruptive-commands.sh index 8a14b4e0979db..4356642da4996 100755 --- a/ci-operator/step-registry/openshift-extended/test/disruptive/openshift-extended-test-disruptive-commands.sh +++ b/ci-operator/step-registry/openshift-extended/test/disruptive/openshift-extended-test-disruptive-commands.sh @@ -4,6 +4,16 @@ set -o nounset set -o errexit set -o pipefail +echo "Adding tmp to path..." +export PATH=/tmp/:$PATH + +echo "WAITING FOR DEBUG..." +while [ ! -f "/tmp/continue" ] +do + sleep 10 +done + + function warn_0_case_executed { local count count="$(ls ${ARTIFACT_DIR} | wc -l)" diff --git a/ci-operator/step-registry/openshift-extended/test/longduration/openshift-extended-test-longduration-commands.sh b/ci-operator/step-registry/openshift-extended/test/longduration/openshift-extended-test-longduration-commands.sh index 373680243599e..f3cfeb9a5b3a0 100755 --- a/ci-operator/step-registry/openshift-extended/test/longduration/openshift-extended-test-longduration-commands.sh +++ b/ci-operator/step-registry/openshift-extended/test/longduration/openshift-extended-test-longduration-commands.sh @@ -4,6 +4,16 @@ set -o nounset set -o errexit set -o pipefail +echo "Adding tmp to path..." +export PATH=/tmp/:$PATH + +echo "WAITING FOR DEBUG..." +while [ ! -f "/tmp/continue" ] +do + sleep 10 +done + + function warn_0_case_executed { local count count="$(ls ${ARTIFACT_DIR} | wc -l)" diff --git a/ci-operator/step-registry/openshift/e2e/test/openshift-e2e-test-commands.sh b/ci-operator/step-registry/openshift/e2e/test/openshift-e2e-test-commands.sh index 85b7f4e2858d7..78f51c845eb2f 100755 --- a/ci-operator/step-registry/openshift/e2e/test/openshift-e2e-test-commands.sh +++ b/ci-operator/step-registry/openshift/e2e/test/openshift-e2e-test-commands.sh @@ -4,6 +4,17 @@ set -o nounset set -o errexit set -o pipefail + +echo "Adding tmp to path..." +export PATH=/tmp/:$PATH + +echo "WAITING FOR DEBUG..." +while [ ! -f "/tmp/continue" ] +do + sleep 10 +done + + export AWS_SHARED_CREDENTIALS_FILE=${CLUSTER_PROFILE_DIR}/.awscred export AZURE_AUTH_LOCATION=${CLUSTER_PROFILE_DIR}/osServicePrincipal.json export GCP_SHARED_CREDENTIALS_FILE=${CLUSTER_PROFILE_DIR}/gce.json