Skip to content

Commit 524f8d3

Browse files
author
Lucas Yoon
committed
preimport ginkgo
1 parent 061114d commit 524f8d3

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.ci/openshift_integration.sh

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,13 @@ curl -sL https://developers.redhat.com/content-gateway/rest/mirror/pub/openshift
5151
export GLOBALODOCONFIG=$(pwd)/preferences.yaml
5252

5353
# Download & Install Ginkgo
54+
# Use pre-built binary to avoid Go version compatibility issues
5455
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"
5661

5762
# Install the devfile registry
5863
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= | \

tests/check_odov3.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ if [ ! -z "${1}" ]; then
2020
args="-odoPath ${1} ${args}"
2121
fi
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" \

0 commit comments

Comments
 (0)