Skip to content

Compatability Tests Released 14.1.1.0 #187

Compatability Tests Released 14.1.1.0

Compatability Tests Released 14.1.1.0 #187

# Copyright 2024 Oracle Corporation and/or its affiliates.
# Licensed under the Universal Permissive License v 1.0 as shown at
# https://oss.oracle.com/licenses/upl.
# ---------------------------------------------------------------------------
# Coherence CLI Compatability Tests (14.1.1.0) against latest stable CLI version
# ---------------------------------------------------------------------------
name: Compatability Tests Released 14.1.1.0
on:
workflow_dispatch:
schedule:
# Every day at 1 am
- cron: '0 1 * * *'
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
coherenceVersion:
- 14.1.1-0-17
- 14.1.1-0-18
javaImage:
- gcr.io/distroless/java11
# 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.
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Get Docker Images
shell: bash
run: |
docker pull gcr.io/distroless/java17
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: '11'
distribution: 'zulu'
- name: Cache Go Modules
uses: actions/cache@v4
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-mods-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-mods-
- name: Cache Maven packages
uses: actions/cache@v4
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.21'
- name: Compatability Tests
shell: bash
run: |
# Getting latest version
LATEST=$(curl -s https://oracle.github.io/coherence-cli/stable.txt)
echo "Checkout out $LATEST"
git checkout $LATEST
export COHERENCE_BASE_IMAGE=${{ matrix.javaImage }}
export COHERENCE_VERSION=${{ matrix.coherenceVersion }}
GOBIN=`pwd`/build/tools/bin go install gotest.tools/gotestsum@v1.8.1
make clean build-test-images test-e2e-standalone
make test-clean test-discovery
- uses: actions/upload-artifact@v4
if: failure()
with:
name: test-output-${{ matrix.coherenceVersion }}-${{ matrix.javaImage }}
path: build/_output/test-logs