Skip to content

[maven-release-plugin] prepare for next development iteration #53

[maven-release-plugin] prepare for next development iteration

[maven-release-plugin] prepare for next development iteration #53

Workflow file for this run

# ---------------------------------------------------------------------------
# Bedrock 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', '20']
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@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: 'oracle'
java-version: ${{ matrix.jvmVersion }}
- 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