diff --git a/.ci/cico_minishift_nightly.sh b/.ci/cico_minishift_nightly.sh index 501b860a4..5f17ffafc 100755 --- a/.ci/cico_minishift_nightly.sh +++ b/.ci/cico_minishift_nightly.sh @@ -47,6 +47,16 @@ function init() { fi } +installYq() { + YQ=$(command -v yq) || true + if [[ ! -x "${YQ}" ]]; then + pip3 install wheel + pip3 install yq + fi + echo "[INFO] $(yq --version)" + echo "[INFO] $(jq --version)" +} + # Utility to get che events and pod logs from openshift cluster function getOCCheClusterLogs() { mkdir -p /tmp/artifacts-che @@ -67,27 +77,34 @@ function getOCCheClusterLogs() { # Deploy Eclipse Che function run() { - cat >/tmp/che-cr-patch.yaml <