Skip to content

Update to 1.7.0

Update to 1.7.0 #566

# Copyright 2021, 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 GitHub Actions CI build - Test Create
# ---------------------------------------------------------------------------
name: CI Test Create Cluster
on:
workflow_dispatch:
push:
branches-ignore:
- gh-pages
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
coherenceVersion:
- 22.06.7
- 22.06.8
- 22.06.9-SNAPSHOT
- 24.03
- 23.03.1-SNAPSHOT
javaVersion:
- 17
# 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: Set up JDK
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.javaVersion }}
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.20'
- name: Build cohctl
shell: bash
run: make cohctl
- name: Setup Gradle and Run Create Cluster Tests
shell: bash
run: |
DIR=`pwd`
INSTALL=${DIR}/gradle-install
mkdir -p ${DIR}/gradle-home ${INSTALL}
VERSION=7.4.2
wget -q -c https://services.gradle.org/distributions/gradle-${VERSION}-bin.zip -P ${INSTALL}
ls -l ${INSTALL}
unzip -d ${DIR}/gradle-home ${INSTALL}/gradle-${VERSION}-bin.zip
export GRADLE_HOME=${DIR}/gradle-home/gradle-${VERSION}
export PATH=$GRADLE_HOME/bin:$PATH
COHERENCE_VERSION=${{ matrix.coherenceVersion }} make test-create-cluster
- uses: actions/upload-artifact@v4
if: failure()
with:
name: test-output-${{ matrix.coherenceVersion }}
path: build/_output/test-logs