-
-
Notifications
You must be signed in to change notification settings - Fork 201
37 lines (35 loc) · 1014 Bytes
/
full-build.yml
File metadata and controls
37 lines (35 loc) · 1014 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: Full Build
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
java-version: [21]
include:
- os: ubuntu-latest
java-version: 25
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Set up JDK ${{ matrix.java-version }}
uses: actions/setup-java@v5
with:
java-version: ${{ matrix.java-version }}
distribution: 'temurin'
cache: maven
- name: Install
run: mvn clean install -DskipTests -q -P gradlePlugin
- name: Build
run: mvn -B package -P gradlePlugin
env:
BUILD_PORT: 0
BUILD_SECURE_PORT: 0
BUILD_LOG_LEVEL: 'ERROR'
- name: Tests
uses: mikepenz/action-junit-report@v5
if: failure()
with:
check_name: Test ${{ matrix.os }} ${{ matrix.java-version }}
report_paths: '*/target/*/TEST-*.xml'