From 7c8fc583649037115538ed12fe40ec50bea5b78c Mon Sep 17 00:00:00 2001 From: nickboldt Date: Tue, 9 Mar 2021 10:34:41 -0500 Subject: [PATCH] do verifyContainerExistsWithTimeout checks for current and later phases; fix repos for releaseDevfileRegistry and releasePluginRegistry Change-Id: I0001f290d7d6a44ec988a1ba8d73384766a00da4 Signed-off-by: nickboldt --- cico_release.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cico_release.sh b/cico_release.sh index 25a66b2..6ca32f8 100755 --- a/cico_release.sh +++ b/cico_release.sh @@ -105,10 +105,10 @@ releaseCheTheia() { } releaseDevfileRegistry() { - invokeAction eclipse/che-theia "Release Che Devfile Registry" "4191260" version "${CHE_VERSION}" + invokeAction eclipse/che-devfile-registry "Release Che Devfile Registry" "4191260" version "${CHE_VERSION}" } releasePluginRegistry() { - invokeAction eclipse/che-theia "Release Che Plugin Registry" "4191251" version "${CHE_VERSION}" + invokeAction eclipse/che-plugin-registry "Release Che Plugin Registry" "4191251" version "${CHE_VERSION}" } branchJWTProxyAndKIP() { @@ -187,10 +187,10 @@ if [[ ${PHASES} == *"3"* ]]; then releaseCheServer fi wait -if [[ ${PHASES} == *"2"* ]]; then +if [[ ${PHASES} == *"2"* ]] || [[ ${PHASES} == *"3"* ]] || [[ ${PHASES} == *"4"* ]]; then verifyContainerExistsWithTimeout ${REGISTRY}/${ORGANIZATION}/che-plugin-registry:${CHE_VERSION} 30 fi -if [[ ${PHASES} == *"3"* ]]; then +if [[ ${PHASES} == *"3"* ]] || [[ ${PHASES} == *"4"* ]]; then # verify images all created from IMAGES_LIST for image in ${IMAGES_LIST[@]}; do verifyContainerExistsWithTimeout ${image}:${CHE_VERSION} 60