Skip to content

Allow HeapSize option to override other HeapSize options #178

Allow HeapSize option to override other HeapSize options

Allow HeapSize option to override other HeapSize options #178

Workflow file for this run

# 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:
jvmVersion: ['17', '19']
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-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@v2
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: ${{ matrix.jvmVersion }}
- name: Cache Maven packages
uses: actions/cache@v1
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