Fix 1572 - Add target/classes to loose app definition for newer "exploded" loose app format #1287
Workflow file for this run
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
# This workflow will build a Java project with Maven | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven | |
name: Java CI with Maven | |
on: | |
push: | |
branches: '**' | |
pull_request: | |
branches: [ main ] | |
env: | |
# server-config-props-it fix | |
MAVEN_HOME: $(which mvn) | |
jobs: | |
# UNIX BUILDS | |
build-unix: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
# test against latest update of each major Java version, as well as specific updates of LTS versions: | |
RUNTIME: [ol, wlp] | |
RUNTIME_VERSION: [23.0.0.6, 23.0.0.3] | |
java: [17, 11, 8] | |
exclude: | |
- java: 8 | |
RUNTIME_VERSION: 23.0.0.3 | |
- java: 17 | |
RUNTIME_VERSION: 23.0.0.3 | |
name: ${{ matrix.RUNTIME }} ${{ matrix.RUNTIME_VERSION }}, Java ${{ matrix.java }}, Linux | |
steps: | |
# Checkout repos | |
- name: Checkout ci.maven | |
uses: actions/checkout@v3 | |
- name: Setup Java ${{ matrix.java }} | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: ${{ matrix.java }} | |
cache: 'maven' | |
- name: Checkout ci.common | |
uses: actions/checkout@v3 | |
with: | |
repository: scottkurz/ci.common | |
ref: fine-tune-exploded-loose-app-update | |
path: ci.common | |
- name: Checkout ci.ant | |
uses: actions/checkout@v3 | |
with: | |
repository: OpenLiberty/ci.ant | |
path: ci.ant | |
- name: Set up Maven | |
uses: stCarolas/[email protected] | |
with: | |
maven-version: 3.9.2 | |
- name: Cache maven packages | |
uses: actions/cache@v3 | |
with: | |
path: ~/.m2 | |
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} | |
restore-keys: ${{ runner.os }}-m2 | |
# Install dependencies | |
- name: Install ci.ant and ci.common | |
run: | | |
./mvnw -V clean install -f ci.ant --batch-mode --no-transfer-progress --errors -DtrimStackTrace=false | |
./mvnw -V clean install -f ci.common --batch-mode --no-transfer-progress --errors -DtrimStackTrace=false | |
# Run tests | |
- name: Run tests | |
run: ./mvnw -V verify --batch-mode --no-transfer-progress --errors -DtrimStackTrace=false -Ponline-its -D"invoker.streamLogs"=true -Druntime=${{ matrix.RUNTIME }} -DruntimeVersion="${{ matrix.RUNTIME_VERSION }}" | |
# WINDOWS BUILD | |
build-windows: | |
runs-on: windows-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
# test against latest update of each major Java version, as well as specific updates of LTS versions: | |
RUNTIME: [ol, wlp] | |
RUNTIME_VERSION: [23.0.0.6, 23.0.0.3] | |
java: [17, 11, 8] | |
exclude: | |
- java: 8 | |
RUNTIME_VERSION: 23.0.0.3 | |
- java: 17 | |
RUNTIME_VERSION: 23.0.0.3 | |
name: ${{ matrix.RUNTIME }} ${{ matrix.RUNTIME_VERSION }}, Java ${{ matrix.java }}, Windows | |
steps: | |
# Checkout repos | |
- name: Checkout ci.maven | |
uses: actions/checkout@v3 | |
- name: Setup Java ${{ matrix.java }} | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: ${{ matrix.java }} | |
cache: 'maven' | |
# Move and cloning to C: drive for Windows for more disk space | |
- name: Clone ci.ant, ci.common, ci.maven repos to C drive | |
run: | | |
cp -r D:/a/ci.maven/ci.maven C:/ci.maven | |
git clone https://github.com/scottkurz/ci.common.git --branch fine-tune-exploded-loose-app-update --single-branch C:/ci.common | |
git clone https://github.com/OpenLiberty/ci.ant.git C:/ci.ant | |
- 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 Maven | |
uses: stCarolas/[email protected] | |
with: | |
maven-version: 3.9.2 | |
# Install ci.ant | |
- name: Install ci.ant | |
working-directory: C:/ci.ant | |
run: .\mvnw.cmd -V clean install --batch-mode --no-transfer-progress --errors -DtrimStackTrace=false | |
# Install ci.common | |
- name: Install ci.common | |
working-directory: C:/ci.common | |
run: .\mvnw.cmd -V clean install --batch-mode --no-transfer-progress --errors -DtrimStackTrace=false | |
# Run tests | |
- name: Run tests | |
working-directory: C:/ci.maven | |
run: .\mvnw.cmd -V verify -Ponline-its --batch-mode --no-transfer-progress --errors -DtrimStackTrace=false -D"invoker.streamLogs"=true -Druntime=${{ matrix.RUNTIME }} -DruntimeVersion="${{ matrix.RUNTIME_VERSION }}" |