Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@
<version>${version.plugin.jib}</version>
<configuration>
<from>
<image>${coherence.test.base.image}</image>
<image>docker://${coherence.test.base.image}</image>
</from>
<container>
<jvmFlags>
Expand Down Expand Up @@ -418,7 +418,7 @@
<version>${version.plugin.jib}</version>
<configuration>
<from>
<image>${coherence.test.base.image}</image>
<image>docker://${coherence.test.base.image}</image>
</from>
<container>
<jvmFlags>
Expand Down
10 changes: 5 additions & 5 deletions scripts/run-compat-ce.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

#
# Copyright (c) 2021, 2024 Oracle and/or its affiliates.
# Copyright (c) 2021, 2025 Oracle and/or its affiliates.
# Licensed under the Universal Permissive License v 1.0 as shown at
# https://oss.oracle.com/licenses/upl.
#
Expand All @@ -24,11 +24,11 @@ COHERENCE_BASE_IMAGE=gcr.io/distroless/java17-debian12 PROFILES=,executor COHERE
echo "Coherence CE 14.1.1-0-19"
COHERENCE_VERSION=14.1.1-0-19 make clean build-test-images test-e2e-standalone

echo "Coherence CE 24.09.3 with Topics"
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17-debian12 PROFILES=,topics COHERENCE_VERSION=24.09.3 make clean build-test-images test-e2e-topics
echo "Coherence CE 25.03.1 with Topics"
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17-debian12 PROFILES=,topics COHERENCE_VERSION=25.03.1 make clean build-test-images test-e2e-topics

echo "Coherence CE 24.09.3 with View Caches"
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17-debian12 PROFILES=,views COHERENCE_VERSION=24.09.3 make clean build-view-images test-e2e-views
echo "Coherence CE 25.03.1 with View Caches"
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17-debian12 PROFILES=,views COHERENCE_VERSION=25.03.1 make clean build-view-images test-e2e-views

# Security Enabled
export COMPUTERNAME=server1
Expand Down
26 changes: 10 additions & 16 deletions scripts/run-compat-commercial.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,24 +9,18 @@
# Run compatability tests
set -e

echo "Coherence GE 14.1.1-0-19"
PROFILES=,commercial COHERENCE_VERSION=14.1.1-0-19 COHERENCE_GROUP_ID=com.oracle.coherence make clean build-test-images test-e2e-standalone

echo "Coherence GE 12.2.1-4-23"
PROFILES=,commercial COHERENCE_VERSION=12.2.1-4-23 COHERENCE_GROUP_ID=com.oracle.coherence make clean build-test-images test-e2e-standalone
echo "Coherence GE 14.1.2-0-3"
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17-debian12 PROFILES=,commercial COHERENCE_VERSION=14.1.2-0-3 COHERENCE_GROUP_ID=com.oracle.coherence make clean build-test-images test-e2e-standalone

# Federation Tests
echo "Coherence Federation Test GE 14.1.1-0-19"
PROFILES=,federation COHERENCE_VERSION=14.1.1-0-19 COHERENCE_GROUP_ID=com.oracle.coherence make clean build-federation-images test-e2e-federation

echo "Coherence Federation Test GE 12.2.1-4-23"
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17-debian12 PROFILES=,federation COHERENCE_VERSION=12.2.1-4-23 COHERENCE_GROUP_ID=com.oracle.coherence make clean build-federation-images test-e2e-federation
echo "Coherence Federation Test GE 14.1.2-0-3"
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17-debian12 PROFILES=,federation COHERENCE_VERSION=14.1.2-0-3 COHERENCE_GROUP_ID=com.oracle.coherence make clean build-federation-images test-e2e-federation

echo "Coherence Federation Test 14.1.2-0-2"
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17-debian12 PROFILES=,federation COHERENCE_VERSION=14.1.2-0-2 COHERENCE_GROUP_ID=com.oracle.coherence make clean build-federation-images test-e2e-federation
echo "Coherence Federation Test 14.1.2-0-3"
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17-debian12 PROFILES=,federation COHERENCE_VERSION=14.1.2-0-3 COHERENCE_GROUP_ID=com.oracle.coherence make clean build-federation-images test-e2e-federation

echo "Coherence GE 14.1.2-0-2with topics"
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17-debian12 PROFILES=,topics-commercial COHERENCE_VERSION=14.1.2-0-2COHERENCE_GROUP_ID=com.oracle.coherence make clean build-test-images test-e2e-topics
echo "Coherence GE 14.1.2-0-3 with topics"
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17-debian12 PROFILES=,topics-commercial COHERENCE_VERSION=14.1.2-0-3 COHERENCE_GROUP_ID=com.oracle.coherence make clean build-test-images test-e2e-topics

echo "Coherence GE 14.1.2-0-2with views"
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17-debian12 PROFILES=,views COHERENCE_GROUP_ID=com.oracle.coherence COHERENCE_VERSION=14.1.2-0-2make clean build-view-images test-e2e-views
echo "Coherence GE 14.1.2-0-3 with views"
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17-debian12 PROFILES=,views COHERENCE_GROUP_ID=com.oracle.coherence COHERENCE_VERSION=14.1.2-0-3 make clean build-view-images test-e2e-views
Loading