-
Notifications
You must be signed in to change notification settings - Fork 11
82 lines (70 loc) · 2.15 KB
/
compatability-tests.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# Copyright 2021, 2023 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 against mainline of CLI
# ---------------------------------------------------------------------------
name: Compatability Tests
on:
workflow_dispatch:
push:
branches-ignore:
- gh-pages
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
coherenceVersion:
- 23.09
- 22.06.5
- 22.06.6-SNAPSHOT
- 14.1.1-0-14
- 14.1.1-0-15-SNAPSHOT
javaImage:
- gcr.io/distroless/java17
# 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@v3
with:
fetch-depth: 0
- name: Get Docker Images
shell: bash
run: |
docker pull gcr.io/distroless/java:11
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'zulu'
- name: Cache Go Modules
uses: actions/cache@v3
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@v3
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19
- name: Compatability Tests
shell: bash
run: |
export COHERENCE_BASE_IMAGE=${{ matrix.javaImage }}
export COHERENCE_VERSION=${{ matrix.coherenceVersion }}
make clean build-test-images test-e2e-standalone
make test-clean test-discovery
- uses: actions/upload-artifact@v3
if: failure()
with:
name: test-output
path: build/_output/test-logs