f067203baf
One of the Maven plugins we use is compiled for Java 17, and though I still think we should target release 11, I don't think it's a huge risk not to compile _with_ a Java 11 JDK.
41 lines
931 B
YAML
41 lines
931 B
YAML
name: Build with Maven
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
|
|
strategy:
|
|
matrix:
|
|
java: ['17', '21']
|
|
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
BUILD_NUMBER: "${{github.run_number}}"
|
|
MAVEN_CLI_OPTS: "--batch-mode --no-transfer-progress"
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
submodules: 'true'
|
|
- name: Set up JDK ${{ matrix.java }}
|
|
uses: actions/setup-java@v3
|
|
with:
|
|
java-version: ${{ matrix.java }}
|
|
distribution: 'temurin'
|
|
cache: 'maven'
|
|
- name: Build and Test with Maven
|
|
run: mvn $MAVEN_CLI_OPTS clean verify
|
|
- name: Upload Test Results
|
|
uses: actions/upload-artifact@v4
|
|
if: ${{ always() && matrix.java == '17' }}
|
|
with:
|
|
name: test-results
|
|
path: 'target/surefire-reports/TEST-*.xml'
|
|
|