File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
hack/jenkins/test-flake-chart Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -39,9 +39,10 @@ set -eu -o pipefail
3939FINISHED_LIST_REMOTE=" ${BUCKET_PATH} /finished_environments_${ROOT_JOB_ID} .txt"
4040# Ensure FINISHED_LIST_REMOTE exists so we can append (but don't erase any existing entries in FINISHED_LIST_REMOTE)
4141< /dev/null gsutil cp -n - " ${FINISHED_LIST_REMOTE} "
42- # Copy the job name to APPEND_TMP
42+ # Copy the job name to APPEND_TMP. If the job name ends in "_integration" remove it.
4343APPEND_TMP=" ${BUCKET_PATH} /$( basename $( mktemp) ) "
4444echo " ${UPSTREAM_JOB} " \
45+ | sed -r ' s/_integration$//' \
4546 | gsutil cp - " ${APPEND_TMP} "
4647# Append job name to remote finished list.
4748gsutil compose " ${FINISHED_LIST_REMOTE} " " ${APPEND_TMP} " " ${FINISHED_LIST_REMOTE} "
You can’t perform that action at this time.
0 commit comments