Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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)"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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)"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down