File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -51,8 +51,13 @@ curl -sL https://developers.redhat.com/content-gateway/rest/mirror/pub/openshift
5151export GLOBALODOCONFIG=$( pwd) /preferences.yaml
5252
5353# Download & Install Ginkgo
54+ # Use pre-built binary to avoid Go version compatibility issues
5455GINKGO_VERSION=${GINKGO_VERSION:- v2.13.0}
55- go install github.com/onsi/ginkgo/v2/ginkgo@${GINKGO_VERSION}
56+ echo " Downloading Ginkgo binary version: ${GINKGO_VERSION} "
57+ curl -sL https://github.com/onsi/ginkgo/releases/download/${GINKGO_VERSION} /ginkgo_${GINKGO_VERSION} _linux_amd64 -o ginkgo
58+ chmod +x ginkgo
59+ export PATH=$( pwd) :$PATH
60+ echo " Ginkgo installation completed"
5661
5762# Install the devfile registry
5863oc process -f $BASE_DIR /.ci/deploy/devfile-registry.yaml -p DEVFILE_INDEX_IMAGE=$IMG -p IMAGE_TAG=$TAG -p REPLICAS=3 -p ANALYTICS_WRITE_KEY= | \
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ if [ ! -z "${1}" ]; then
2020 args=" -odoPath ${1} ${args} "
2121fi
2222
23- ginkgo run --mod=readonly -- procs 2 \
23+ ginkgo run --procs 2 \
2424 --skip=" stack: java-openliberty-gradle version: 0.4.0 starter: rest" \
2525 --skip=" stack: java-vertx version: 1.2.0 starter: vertx-cache-example-redhat" \
2626 --skip=" stack: java-vertx version: 1.2.0 starter: vertx-cache-example" \
You can’t perform that action at this time.
0 commit comments