generated from oracle/template-repo
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update docker images * Fix incorrect images
- Loading branch information
1 parent
036f2e6
commit 0938f78
Showing
19 changed files
with
408 additions
and
174 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,7 +43,7 @@ jobs: | |
- name: Get Docker Images | ||
shell: bash | ||
run: | | ||
docker pull gcr.io/distroless/java17 | ||
docker pull gcr.io/distroless/java17-debian12 | ||
- name: Set up JDK 17 for Build | ||
uses: actions/setup-java@v4 | ||
|
@@ -78,15 +78,15 @@ jobs: | |
run: | | ||
echo "Running verify against $COH_VERSION" | ||
go get google.golang.org/grpc/cmd/[email protected] | ||
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17 INCLUDE_LONG_RUNNING=true COHERENCE_VERSION=$COH_VERSION PROFILES=,-jakarta,javax make clean generate-proto generate-proto-v1 build-test-images test-e2e-standalone | ||
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17-debian12 INCLUDE_LONG_RUNNING=true COHERENCE_VERSION=$COH_VERSION PROFILES=,-jakarta,javax make clean generate-proto generate-proto-v1 build-test-images test-e2e-standalone | ||
- name: E2E Local Tests With Scope | ||
env: | ||
COH_VERSION: ${{ matrix.coherenceVersion }} | ||
shell: bash | ||
run: | | ||
go get google.golang.org/grpc/cmd/[email protected] | ||
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17 COHERENCE_VERSION=$COH_VERSION PROFILES=,-jakarta,javax,scope make clean generate-proto generate-proto-v1 build-test-images test-e2e-standalone-scope | ||
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17-debian12 COHERENCE_VERSION=$COH_VERSION PROFILES=,-jakarta,javax,scope make clean generate-proto generate-proto-v1 build-test-images test-e2e-standalone-scope | ||
- uses: actions/upload-artifact@v4 | ||
if: failure() | ||
|
@@ -107,7 +107,7 @@ jobs: | |
run: | | ||
echo "Running verify against $COH_VERSION" | ||
go get google.golang.org/grpc/cmd/[email protected] | ||
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17 SECURE=true COHERENCE_IGNORE_INVALID_CERTS=true INCLUDE_LONG_RUNNING=true \ | ||
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17-debian12 SECURE=true COHERENCE_IGNORE_INVALID_CERTS=true INCLUDE_LONG_RUNNING=true \ | ||
COHERENCE_TLS_CERTS_PATH=`pwd`/test/utils/certs/guardians-ca.crt \ | ||
COHERENCE_TLS_CLIENT_CERT=`pwd`/test/utils/certs/star-lord.crt \ | ||
COHERENCE_TLS_CLIENT_KEY=`pwd`/test/utils/certs/star-lord.key \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,7 +43,7 @@ jobs: | |
- name: Get Docker Images | ||
shell: bash | ||
run: | | ||
docker pull gcr.io/distroless/java17 | ||
docker pull gcr.io/distroless/java17-debian12 | ||
- name: Set up JDK 11 for Build | ||
uses: actions/setup-java@v4 | ||
|
@@ -78,15 +78,15 @@ jobs: | |
run: | | ||
echo "Running verify against $COH_VERSION" | ||
go get google.golang.org/grpc/cmd/[email protected] | ||
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17 INCLUDE_LONG_RUNNING=true COHERENCE_VERSION=$COH_VERSION PROFILES=,-jakarta,javax make clean generate-proto build-test-images test-e2e-standalone | ||
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17-debian12 INCLUDE_LONG_RUNNING=true COHERENCE_VERSION=$COH_VERSION PROFILES=,-jakarta,javax make clean generate-proto build-test-images test-e2e-standalone | ||
- name: E2E Local Tests With Scope | ||
env: | ||
COH_VERSION: ${{ matrix.coherenceVersion }} | ||
shell: bash | ||
run: | | ||
go get google.golang.org/grpc/cmd/[email protected] | ||
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17 COHERENCE_VERSION=$COH_VERSION PROFILES=,-jakarta,javax,scope make clean generate-proto build-test-images test-e2e-standalone-scope | ||
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17-debian12 COHERENCE_VERSION=$COH_VERSION PROFILES=,-jakarta,javax,scope make clean generate-proto build-test-images test-e2e-standalone-scope | ||
- uses: actions/upload-artifact@v4 | ||
if: failure() | ||
|
@@ -107,7 +107,7 @@ jobs: | |
run: | | ||
echo "Running verify against $COH_VERSION" | ||
go get google.golang.org/grpc/cmd/[email protected] | ||
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17 SECURE=true COHERENCE_IGNORE_INVALID_CERTS=true INCLUDE_LONG_RUNNING=true \ | ||
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17-debian12 SECURE=true COHERENCE_IGNORE_INVALID_CERTS=true INCLUDE_LONG_RUNNING=true \ | ||
COHERENCE_TLS_CERTS_PATH=`pwd`/test/utils/certs/guardians-ca.crt \ | ||
COHERENCE_TLS_CLIENT_CERT=`pwd`/test/utils/certs/star-lord.crt \ | ||
COHERENCE_TLS_CLIENT_KEY=`pwd`/test/utils/certs/star-lord.key \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,7 +43,7 @@ jobs: | |
- name: Get Docker Images | ||
shell: bash | ||
run: | | ||
docker pull gcr.io/distroless/java17 | ||
docker pull gcr.io/distroless/java17-debian12 | ||
- name: Set up JDK 17 for Build | ||
uses: actions/setup-java@v4 | ||
|
@@ -77,7 +77,7 @@ jobs: | |
shell: bash | ||
run: | | ||
go get google.golang.org/grpc/cmd/[email protected] | ||
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17 INCLUDE_LONG_RUNNING=true PROFILES=,-jakarta,javax COHERENCE_VERSION=$COH_VERSION make clean generate-proto generate-proto-v1 build-test-images test-e2e-standalone | ||
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17-debian12 INCLUDE_LONG_RUNNING=true PROFILES=,-jakarta,javax COHERENCE_VERSION=$COH_VERSION make clean generate-proto generate-proto-v1 build-test-images test-e2e-standalone | ||
- uses: actions/upload-artifact@v4 | ||
if: failure() | ||
|
@@ -91,7 +91,7 @@ jobs: | |
shell: bash | ||
run: | | ||
go get google.golang.org/grpc/cmd/[email protected] | ||
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17 COHERENCE_VERSION=$COH_VERSION PROFILES=,-jakarta,javax,scope make clean generate-proto generate-proto-v1 build-test-images test-e2e-standalone-scope | ||
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17-debian12 COHERENCE_VERSION=$COH_VERSION PROFILES=,-jakarta,javax,scope make clean generate-proto generate-proto-v1 build-test-images test-e2e-standalone-scope | ||
- uses: actions/upload-artifact@v4 | ||
if: failure() | ||
|
@@ -106,7 +106,7 @@ jobs: | |
run: | | ||
echo "Running verify against $COH_VERSION" | ||
go get google.golang.org/grpc/cmd/[email protected] | ||
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17 SECURE=true COHERENCE_IGNORE_INVALID_CERTS=true INCLUDE_LONG_RUNNING=true \ | ||
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17-debian12 SECURE=true COHERENCE_IGNORE_INVALID_CERTS=true INCLUDE_LONG_RUNNING=true \ | ||
COHERENCE_TLS_CERTS_PATH=`pwd`/test/utils/certs/guardians-ca.crt \ | ||
COHERENCE_TLS_CLIENT_CERT=`pwd`/test/utils/certs/star-lord.crt \ | ||
COHERENCE_TLS_CLIENT_KEY=`pwd`/test/utils/certs/star-lord.key \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright 2024,2025 Oracle Corporation and/or its affiliates. | ||
# Copyright 2024, 2025 Oracle Corporation and/or its affiliates. | ||
# Licensed under the Universal Permissive License v 1.0 as shown at | ||
# https://oss.oracle.com/licenses/upl. | ||
|
||
|
@@ -25,7 +25,7 @@ jobs: | |
coherenceVersion: | ||
- 24.09 | ||
- 24.09.2 | ||
- 24.09.3-SNAPSHOT | ||
- 24.09.4-SNAPSHOT | ||
go-version: | ||
- 1.19.x | ||
- 1.20.x | ||
|
@@ -43,7 +43,7 @@ jobs: | |
- name: Get Docker Images | ||
shell: bash | ||
run: | | ||
docker pull gcr.io/distroless/java17 | ||
docker pull gcr.io/distroless/java17-debian12 | ||
- name: Set up JDK 17 for Build | ||
uses: actions/setup-java@v4 | ||
|
@@ -77,7 +77,7 @@ jobs: | |
shell: bash | ||
run: | | ||
go get google.golang.org/grpc/cmd/[email protected] | ||
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17 INCLUDE_LONG_RUNNING=true PROFILES=,jakarta,-javax COHERENCE_VERSION=$COH_VERSION make clean generate-proto generate-proto-v1 build-test-images test-e2e-standalone | ||
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17-debian12 INCLUDE_LONG_RUNNING=true PROFILES=,jakarta,-javax COHERENCE_VERSION=$COH_VERSION make clean generate-proto generate-proto-v1 build-test-images test-e2e-standalone | ||
- uses: actions/upload-artifact@v4 | ||
if: failure() | ||
|
@@ -91,7 +91,7 @@ jobs: | |
shell: bash | ||
run: | | ||
go get google.golang.org/grpc/cmd/[email protected] | ||
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17 COHERENCE_VERSION=$COH_VERSION PROFILES=,jakarta,-javax,scope make clean generate-proto generate-proto-v1 build-test-images test-e2e-standalone-scope | ||
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17-debian12 COHERENCE_VERSION=$COH_VERSION PROFILES=,jakarta,-javax,scope make clean generate-proto generate-proto-v1 build-test-images test-e2e-standalone-scope | ||
- uses: actions/upload-artifact@v4 | ||
if: failure() | ||
|
@@ -106,7 +106,7 @@ jobs: | |
run: | | ||
echo "Running verify against $COH_VERSION" | ||
go get google.golang.org/grpc/cmd/[email protected] | ||
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17 SECURE=true COHERENCE_IGNORE_INVALID_CERTS=true INCLUDE_LONG_RUNNING=true \ | ||
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17-debian12 SECURE=true COHERENCE_IGNORE_INVALID_CERTS=true INCLUDE_LONG_RUNNING=true \ | ||
COHERENCE_TLS_CERTS_PATH=`pwd`/test/utils/certs/guardians-ca.crt \ | ||
COHERENCE_TLS_CLIENT_CERT=`pwd`/test/utils/certs/star-lord.crt \ | ||
COHERENCE_TLS_CLIENT_KEY=`pwd`/test/utils/certs/star-lord.key \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,7 +24,7 @@ jobs: | |
matrix: | ||
coherenceVersion: | ||
- 24.09 | ||
- 24.09.2 | ||
- 24.09.3 | ||
go-version: | ||
- 1.19.x | ||
- 1.20.x | ||
|
@@ -42,7 +42,7 @@ jobs: | |
- name: Get Docker Images | ||
shell: bash | ||
run: | | ||
docker pull gcr.io/distroless/java17 | ||
docker pull gcr.io/distroless/java17-debian12 | ||
- name: Set up JDK 17 for Build | ||
uses: actions/setup-java@v4 | ||
|
@@ -76,7 +76,7 @@ jobs: | |
shell: bash | ||
run: | | ||
go get google.golang.org/grpc/cmd/[email protected] | ||
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17 INCLUDE_LONG_RUNNING=true PROFILES=,jakarta,-javax COHERENCE_VERSION=$COH_VERSION make clean generate-proto build-test-images test-e2e-standalone | ||
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17-debian12 INCLUDE_LONG_RUNNING=true PROFILES=,jakarta,-javax COHERENCE_VERSION=$COH_VERSION make clean generate-proto build-test-images test-e2e-standalone | ||
- uses: actions/upload-artifact@v4 | ||
if: failure() | ||
|
@@ -90,7 +90,7 @@ jobs: | |
shell: bash | ||
run: | | ||
go get google.golang.org/grpc/cmd/[email protected] | ||
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17 COHERENCE_VERSION=$COH_VERSION PROFILES=,jakarta,-javax,scope make clean generate-proto build-test-images test-e2e-standalone-scope | ||
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17-debian12 COHERENCE_VERSION=$COH_VERSION PROFILES=,jakarta,-javax,scope make clean generate-proto build-test-images test-e2e-standalone-scope | ||
- uses: actions/upload-artifact@v4 | ||
if: failure() | ||
|
@@ -105,7 +105,7 @@ jobs: | |
run: | | ||
echo "Running verify against $COH_VERSION" | ||
go get google.golang.org/grpc/cmd/[email protected] | ||
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17 SECURE=true COHERENCE_IGNORE_INVALID_CERTS=true INCLUDE_LONG_RUNNING=true \ | ||
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17-debian12 SECURE=true COHERENCE_IGNORE_INVALID_CERTS=true INCLUDE_LONG_RUNNING=true \ | ||
COHERENCE_TLS_CERTS_PATH=`pwd`/test/utils/certs/guardians-ca.crt \ | ||
COHERENCE_TLS_CLIENT_CERT=`pwd`/test/utils/certs/star-lord.crt \ | ||
COHERENCE_TLS_CLIENT_KEY=`pwd`/test/utils/certs/star-lord.key \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,7 +43,7 @@ jobs: | |
- name: Get Docker Images | ||
shell: bash | ||
run: | | ||
docker pull gcr.io/distroless/java17 | ||
docker pull gcr.io/distroless/java17-debian12 | ||
- name: Set up JDK 17 for Build | ||
uses: actions/setup-java@v4 | ||
|
@@ -77,7 +77,7 @@ jobs: | |
shell: bash | ||
run: | | ||
go get google.golang.org/grpc/cmd/[email protected] | ||
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17 INCLUDE_LONG_RUNNING=true PROFILES=,-jakarta,javax,queues COHERENCE_VERSION=$COH_VERSION make clean generate-proto generate-proto-v1 build-test-images test-e2e-standalone-queues | ||
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17-debian12 INCLUDE_LONG_RUNNING=true PROFILES=,-jakarta,javax,queues COHERENCE_VERSION=$COH_VERSION make clean generate-proto generate-proto-v1 build-test-images test-e2e-standalone-queues | ||
- uses: actions/upload-artifact@v4 | ||
if: failure() | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,8 +24,8 @@ jobs: | |
matrix: | ||
coherenceVersion: | ||
- 24.09 | ||
- 24.09.2 | ||
- 24.09.3-SNAPSHOT | ||
- 24.09.3 | ||
- 24.09.4-SNAPSHOT | ||
go-version: | ||
- 1.19.x | ||
- 1.20.x | ||
|
@@ -43,7 +43,7 @@ jobs: | |
- name: Get Docker Images | ||
shell: bash | ||
run: | | ||
docker pull gcr.io/distroless/java17 | ||
docker pull gcr.io/distroless/java17-debian12 | ||
- name: Set up JDK 17 for Build | ||
uses: actions/setup-java@v4 | ||
|
@@ -77,7 +77,7 @@ jobs: | |
shell: bash | ||
run: | | ||
go get google.golang.org/grpc/cmd/[email protected] | ||
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17 INCLUDE_LONG_RUNNING=true PROFILES=,jakarta,-javax,queues COHERENCE_VERSION=$COH_VERSION make clean generate-proto generate-proto-v1 build-test-images test-e2e-standalone-queues | ||
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17-debian12 INCLUDE_LONG_RUNNING=true PROFILES=,jakarta,-javax,queues COHERENCE_VERSION=$COH_VERSION make clean generate-proto generate-proto-v1 build-test-images test-e2e-standalone-queues | ||
- uses: actions/upload-artifact@v4 | ||
if: failure() | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,9 +26,8 @@ jobs: | |
- 1.22.x | ||
- 1.23.x | ||
coherence-version: | ||
- 24.09 | ||
- 24.09.2 | ||
- 24.09.3-SNAPSHOT | ||
- 24.09.3 | ||
- 24.09.4-SNAPSHOT | ||
|
||
# Checkout the source, we need a depth of zero to fetch all of the history otherwise | ||
# the copyright check cannot work out the date of the files from Git. | ||
|
@@ -40,8 +39,8 @@ jobs: | |
- name: Get Docker Images | ||
shell: bash | ||
run: | | ||
docker pull gcr.io/distroless/java17 | ||
docker pull gcr.io/distroless/java:11 | ||
docker pull gcr.io/distroless/java17-debian12 | ||
docker pull gcr.io/distroless/java11-debian11 | ||
uname -a | ||
- name: Set up JDK | ||
|
@@ -74,7 +73,7 @@ jobs: | |
shell: bash | ||
run: | | ||
go get google.golang.org/grpc/cmd/[email protected] | ||
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17 PROFILES=,jakarta,-javax COHERENCE_VERSION=${{ matrix.coherence-version }} make clean generate-proto generate-proto-v1 build-test-images test-v1-base | ||
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17-debian12 PROFILES=,jakarta,-javax COHERENCE_VERSION=${{ matrix.coherence-version }} make clean generate-proto generate-proto-v1 build-test-images test-v1-base | ||
- uses: actions/upload-artifact@v4 | ||
if: failure() | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Copyright 2023, 2024 Oracle Corporation and/or its affiliates. | ||
# Copyright 2023, 2025 Oracle Corporation and/or its affiliates. | ||
# Licensed under the Universal Permissive License v 1.0 as shown at | ||
# https://oss.oracle.com/licenses/upl. | ||
|
||
|
@@ -21,9 +21,8 @@ jobs: | |
fail-fast: false | ||
matrix: | ||
coherenceVersion: | ||
- 24.09 | ||
- 24.09.2 | ||
- 24.09.3-SNAPSHOT | ||
- 24.09.3 | ||
- 24.09.4-SNAPSHOT | ||
go-version: | ||
- 1.19.x | ||
- 1.20.x | ||
|
@@ -41,7 +40,7 @@ jobs: | |
- name: Get Docker Images | ||
shell: bash | ||
run: | | ||
docker pull gcr.io/distroless/java17 | ||
docker pull gcr.io/distroless/java17-debian12 | ||
uname -a | ||
- name: Set up JDK | ||
|
@@ -77,7 +76,7 @@ jobs: | |
# Change the jib-maven-plugin as this version fails | ||
sed -i.bak 's/<version.plugin.jib>3\.3\.0<\/version.plugin.jib>/<version.plugin.jib>3.4.3<\/version.plugin.jib>/' java/pom.xml | ||
go get google.golang.org/grpc/cmd/[email protected] | ||
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17 COHERENCE_VERSION=${{ matrix.coherenceVersion }} PROFILES=,jakarta,-javax make clean generate-proto build-test-images test-cluster-startup test-examples | ||
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17-debian12 COHERENCE_VERSION=${{ matrix.coherenceVersion }} PROFILES=,jakarta,-javax make clean generate-proto build-test-images test-cluster-startup test-examples | ||
make test-cluster-shutdown || true | ||
- uses: actions/upload-artifact@v4 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,9 +20,8 @@ jobs: | |
fail-fast: false | ||
matrix: | ||
coherenceVersion: | ||
- 24.09 | ||
- 24.09.2 | ||
- 24.09.1-SNAPSHOT | ||
- 24.09.3 | ||
- 24.09.4-SNAPSHOT | ||
go-version: | ||
- 1.19.x | ||
- 1.20.x | ||
|
@@ -40,7 +39,7 @@ jobs: | |
- name: Get Docker Images | ||
shell: bash | ||
run: | | ||
docker pull gcr.io/distroless/java17 | ||
docker pull gcr.io/distroless/java17-debian12 | ||
uname -a | ||
- name: Set up JDK | ||
|
@@ -73,7 +72,7 @@ jobs: | |
shell: bash | ||
run: | | ||
go get google.golang.org/grpc/cmd/[email protected] | ||
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17 COHERENCE_VERSION=${{ matrix.coherenceVersion }} PROFILES=,jakarta,-javax make clean generate-proto build-test-images test-cluster-startup test-examples | ||
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17-debian12 COHERENCE_VERSION=${{ matrix.coherenceVersion }} PROFILES=,jakarta,-javax make clean generate-proto build-test-images test-cluster-startup test-examples | ||
make test-cluster-shutdown || true | ||
- uses: actions/upload-artifact@v4 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,7 +41,7 @@ jobs: | |
- name: Get Docker Images | ||
shell: bash | ||
run: | | ||
docker pull gcr.io/distroless/java:11 | ||
docker pull gcr.io/distroless/java11-debian11 | ||
uname -a | ||
- name: Set up JDK | ||
|
@@ -77,7 +77,7 @@ jobs: | |
# Change the jib-maven-plugin as this version fails | ||
sed -i.bak 's/<version.plugin.jib>3\.3\.0<\/version.plugin.jib>/<version.plugin.jib>3.4.3<\/version.plugin.jib>/' java/pom.xml | ||
go get google.golang.org/grpc/cmd/[email protected] | ||
COHERENCE_VERSION=${{ matrix.coherenceVersion }} PROFILES=,-jakarta,javax make clean generate-proto build-test-images test-cluster-startup test-examples | ||
COHERENCE_BASE_IMAGE=gcr.io/distroless/java11-debian11 COHERENCE_VERSION=${{ matrix.coherenceVersion }} PROFILES=,-jakarta,javax make clean generate-proto build-test-images test-cluster-startup test-examples | ||
make test-cluster-shutdown || true | ||
- uses: actions/upload-artifact@v4 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,7 +43,7 @@ jobs: | |
- name: Get Docker Images | ||
shell: bash | ||
run: | | ||
docker pull gcr.io/distroless/java17 | ||
docker pull gcr.io/distroless/java17-debian12 | ||
- name: Set up JDK | ||
uses: actions/setup-java@v4 | ||
|
@@ -75,7 +75,7 @@ jobs: | |
shell: bash | ||
run: | | ||
go get google.golang.org/grpc/cmd/[email protected] | ||
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17 COHERENCE_VERSION=${{ matrix.coherenceVersion }} PROFILES=,-jakarta,javax make clean generate-proto generate-proto-v1 build-test-images test-cluster-startup test-examples | ||
COHERENCE_BASE_IMAGE=gcr.io/distroless/java17-debian12 COHERENCE_VERSION=${{ matrix.coherenceVersion }} PROFILES=,-jakarta,javax make clean generate-proto generate-proto-v1 build-test-images test-cluster-startup test-examples | ||
make test-cluster-shutdown || true | ||
- uses: actions/upload-artifact@v4 | ||
|
Oops, something went wrong.