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
51
51
export GLOBALODOCONFIG=$( pwd) /preferences.yaml
52
52
53
53
# Download & Install Ginkgo
54
+ # Use pre-built binary to avoid Go version compatibility issues
54
55
GINKGO_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"
56
61
57
62
# Install the devfile registry
58
63
oc 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
20
20
args=" -odoPath ${1} ${args} "
21
21
fi
22
22
23
- ginkgo run --mod=readonly -- procs 2 \
23
+ ginkgo run --procs 2 \
24
24
--skip=" stack: java-openliberty-gradle version: 0.4.0 starter: rest" \
25
25
--skip=" stack: java-vertx version: 1.2.0 starter: vertx-cache-example-redhat" \
26
26
--skip=" stack: java-vertx version: 1.2.0 starter: vertx-cache-example" \
You can’t perform that action at this time.
0 commit comments