Skip to content

Commit

Permalink
do verifyContainerExistsWithTimeout checks for current and later phas…
Browse files Browse the repository at this point in the history
…es; fix repos for releaseDevfileRegistry and releasePluginRegistry

Change-Id: I0001f290d7d6a44ec988a1ba8d73384766a00da4
Signed-off-by: nickboldt <nboldt@redhat.com>
  • Loading branch information
nickboldt committed Mar 9, 2021
1 parent 462334a commit bacdf4a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cico_release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit bacdf4a

Please sign in to comment.