forked from coherence-community/oracle-bedrock
-
Notifications
You must be signed in to change notification settings - Fork 0
73 lines (64 loc) · 2.3 KB
/
build.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
# Copyright 2020 Oracle Corporation and/or its affiliates. All rights reserved.
# Licensed under the Universal Permissive License v 1.0 as shown at
# http://oss.oracle.com/licenses/upl.
# ---------------------------------------------------------------------------
# Coherence CE GitHub Actions CI build.
# ---------------------------------------------------------------------------
name: CI Build
on:
workflow_dispatch:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
# First run a simple compile and unit tests
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
module:
- bedrock-coherence/21.06/coherence-21.06
- bedrock-coherence/21.06/coherence-21.06-testing-support
- bedrock-coherence/21.06/coherence-21.06-testing-support-tests-junit4
- bedrock-coherence/21.06/coherence-21.06-testing-support-tests-junit5
- bedrock-coherence/14.1.1/coherence-14.1.1
- bedrock-coherence/14.1.1/coherence-14.1.1-testing-support
- bedrock-coherence/14.1.1/coherence-14.1.1-testing-support-tests-junit4
- bedrock-coherence/14.1.1/coherence-14.1.1-testing-support-tests-junit5
- bedrock-core
- bedrock-runtime
# - bedrock-runtime-docker-tests
- bedrock-runtime-jacoco
# - bedrock-runtime-jprofiler
# - bedrock-runtime-k8s
- bedrock-runtime-maven-tests
# - bedrock-runtime-remote-tests
- bedrock-runtime-tests
- bedrock-runtime-vagrant-tests
- bedrock-runtime-virtual-tests
- bedrock-testing-support
- bedrock-testing-support-tests
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '11'
- name: Cache Maven packages
uses: actions/cache@v3
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2-
- name: Build
shell: bash
run: |
export DEV_ROOT=$(pwd)
mvn -U --batch-mode -e clean install -DskipTests -Pcoherence-ce
mvn --batch-mode -e -nsu verify -pl ${{ matrix.module }} -Pcoherence-ce -Dgithub.build=true