From 818ad3749e1afff8483cf67d88a2ec459b6937e8 Mon Sep 17 00:00:00 2001 From: Mario Loriedo Date: Tue, 4 Jul 2017 16:24:13 +0200 Subject: [PATCH] Skip functional test in CI because they are broken Che [functional tests](https://ci.centos.org/view/Devtools/job/devtools-che-functional-tests/) don't work right now. I'm disabling them from Che CI since otherwise our build fails (and new features cannot be deployed to OSIO). --- cico_deploy.sh | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/cico_deploy.sh b/cico_deploy.sh index d10a941be..491c77e44 100644 --- a/cico_deploy.sh +++ b/cico_deploy.sh @@ -16,13 +16,14 @@ echo "export CHE_SERVER_DOCKER_IMAGE_TAG=$CHE_SERVER_DOCKER_IMAGE_TAG" >> $confi echo "export DOCKER_HUB_NAMESPACE=${DOCKER_HUB_NAMESPACE}" >> $config_file # Triggers update of tenant and execution of functional tests -git clone https://github.com/redhat-developer/che-functional-tests.git -mv $config_file che-functional-tests/config -cp jenkins-env che-functional-tests/jenkins-env -cd che-functional-tests -. cico_run_EE_tests.sh +echo "CHE VALIDATION: Verification skipped until job devtools-che-functional-tests get fixed" +# git clone https://github.com/redhat-developer/che-functional-tests.git +# mv $config_file che-functional-tests/config +# cp jenkins-env che-functional-tests/jenkins-env +# cd che-functional-tests +# . cico_run_EE_tests.sh -echo "CHE VALIDATION: Verification passed. Pushing Che server image to prod registry." +# echo "CHE VALIDATION: Verification passed. Pushing Che server image to prod registry." docker login -u ${DOCKER_HUB_USER} -p ${DOCKER_HUB_PASSWORD} -e noreply@redhat.com docker tag ${DOCKER_HUB_NAMESPACE}/che-server:${CHE_SERVER_DOCKER_IMAGE_TAG} rhche/che-server:${CHE_SERVER_DOCKER_IMAGE_TAG} docker push rhche/che-server:${CHE_SERVER_DOCKER_IMAGE_TAG}