Merge pull request #414 from jfdenise/main #67
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: WildFly JAR Maven Plugin Examples - CI | |
on: | |
push: | |
branches: | |
- '**' | |
pull_request: | |
types: [opened, synchronize, reopened, ready_for_review] | |
# Only run the latest job | |
concurrency: | |
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}' | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: ${{ matrix.os }}-jdk${{ matrix.java }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, windows-latest ] | |
java: ['17', '21'] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK ${{ matrix.java }} | |
uses: actions/setup-java@v4 | |
with: | |
java-version: ${{ matrix.java }} | |
distribution: 'temurin' | |
cache: 'maven' | |
- name: Build and Test Examples on ${{ matrix.java }} | |
# We first build the project, then we build the examples | |
run: | | |
mvn -B -ntp clean install -DskipTests | |
cd examples | |
mvn -B -ntp clean install | |
- name: Build and Test Example with Gradle on ${{ matrix.java }} | |
run: | | |
cd examples/gradle-mdb-rar | |
./gradlew clean build | |
- uses: actions/upload-artifact@v4 | |
if: failure() | |
with: | |
name: surefire-reports-${{ matrix.os }}-${{ matrix.java }} | |
path: | | |
!**/bootable-jar-build-artifacts/** | |
**/surefire-reports/ | |
- uses: actions/upload-artifact@v4 | |
if: failure() | |
with: | |
name: server-logs-${{ matrix.os }}-${{ matrix.java }} | |
path: | | |
!**/bootable-jar-build-artifacts/** | |
**/server.log | |
- uses: actions/upload-artifact@v4 | |
if: failure() | |
with: | |
name: logs-${{ matrix.os }}-${{ matrix.java }} | |
path: | | |
!**/bootable-jar-build-artifacts/** | |
**/tests/**/logs/** | |