CI Build #251
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright 2020, 2023, Oracle Corporation and/or its affiliates. | |
# | |
# 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: | |
schedule: | |
- cron: '*/30 * * * *' | |
push: | |
branches-ignore: | |
- gh-pages | |
- p4-integ* | |
- last-p4-* | |
pull_request: | |
types: | |
- opened | |
- committed | |
branches: | |
- '*' | |
env: | |
MAVEN_OPTS: -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
stage: | |
- stage1 | |
- stage2 | |
- stage3 | |
- stage4 | |
- stage5 | |
- stage6 | |
- stage7 | |
- stage8 | |
- stage9 | |
- stage10 | |
- stage11 | |
- stage12 | |
- stage13 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up JDK | |
uses: oracle-actions/setup-java@v1 | |
with: | |
website: oracle.com | |
release: 21 | |
- name: Print Maven & Java version | |
run: mvn -version | |
- name: Cache Maven packages | |
uses: actions/cache@v3 | |
with: | |
path: ~/.m2 | |
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} | |
restore-keys: ${{ runner.os }}-m2- | |
# Run the Verify stages in parallel | |
- name: Verify | |
timeout-minutes: 180 | |
shell: bash | |
env: | |
MAVEN_USER: ${{ secrets.MavenUser }} | |
MAVEN_PASSWORD: ${{ secrets.MavenPassword }} | |
run: | | |
echo "Building and running tests in ${{ matrix.stage }}" | |
export DEV_ROOT=$(pwd) | |
mvn --file prj/pom.xml --batch-mode -U -e -s .github/maven/settings.xml -P-modules,stage11 -Doptional -DskipTests -Dcoherence.SkipLargeMemoryTests=true clean install | |
mvn --file prj/pom.xml --batch-mode -e -s .github/maven/settings.xml -Pmodules,-coherence,stage11 -nsu -Doptional -DskipTests -Dcoherence.SkipLargeMemoryTests=true clean install | |
cd prj | |
mvn --batch-mode -e -s ../.github/maven/settings.xml -Pmodules,-coherence,stage11 clean install -nsu -pl test/functional/topics -Dit.test=LocalNamedTopicTests | |
# Upload build artifacts for diagnosing failures | |
- name: Build Artifacts test logs | |
uses: actions/upload-artifact@v3 | |
if: failure() | |
with: | |
name: test-output-${{ matrix.stage }} | |
path: prj/**/target/test-output/**/* | |
if-no-files-found: ignore | |
- name: Build Artifacts test reports | |
uses: actions/upload-artifact@v3 | |
if: failure() | |
with: | |
name: failsafe-surefire-test-reports-${{ matrix.stage }} | |
path: prj/**/target/*-reports/**/* | |
if-no-files-found: ignore | |
- name: Build Artifacts core dumps | |
uses: actions/upload-artifact@v3 | |
if: failure() | |
with: | |
name: core-dumps-${{ matrix.stage }} | |
path: prj/**/core.* | |
if-no-files-found: ignore | |
- name: Build Artifacts compiler replays | |
uses: actions/upload-artifact@v3 | |
if: failure() | |
with: | |
name: compiler-replay-logs-${{ matrix.stage }} | |
path: prj/**/replay_pid*.log | |
if-no-files-found: ignore |