-
Notifications
You must be signed in to change notification settings - Fork 2.3k
107 lines (91 loc) · 3.47 KB
/
maven.yml
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
name: Maven CI
permissions:
contents: read
on:
workflow_dispatch: { }
push:
branches: [ main, '1.13.x', '1.12.x', '1.11.x', '1.10.x' ]
pull_request:
branches: [ main, '1.13.x', '1.12.x', '1.11.x', '1.10.x' ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Set up JDK
uses: actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 # v3.13.0
with:
java-version: 11
distribution: temurin
- name: License Check
run: mvn apache-rat:check "-Drat.consoleOutput"
- name: Build with Maven
run: >-
mvn verify --show-version --errors --batch-mode --no-transfer-progress -Pdocs
-Dgh_user=${{ github.actor }} -Dgh_token=${{ secrets.GITHUB_TOKEN }}
build-all:
needs: build
strategy:
matrix:
os: [ 'ubuntu-latest', 'windows-latest', 'macOS-latest' ]
jdk: [ 11, 17, 21 ]
dist: [ 'temurin', 'adopt-openj9', 'zulu' ]
exclude:
# was already built
- os: 'ubuntu-latest'
jdk: 11
dist: 'temurin'
# exclude temurin on MacOS. zulu (also hotspot) and OpenJ9 are sufficient.
- os: 'macOS-latest'
dist: 'temurin'
# no Temurin 21
- dist: 'temurin'
jdk: 21
# no OpenJ9 21
- dist: adopt-openj9
jdk: 21
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Set up JDK
uses: actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 # v3.13.0
with:
java-version: ${{ matrix.jdk }}
distribution: ${{ matrix.dist }}
- name: Build with Maven (Linux)
if: matrix.os == 'ubuntu-latest' && matrix.jdk <= 17
run: >-
mvn verify --show-version --errors --batch-mode --no-transfer-progress -Pdocs
-Dgh_user=${{ github.actor }} -Dgh_token=${{ secrets.GITHUB_TOKEN }}
- name: Build with Maven (non-Linux or JDK > 17)
if: matrix.os != 'ubuntu-latest' || matrix.jdk > 17
run: >-
mvn verify --show-version --errors --batch-mode --no-transfer-progress -Pdocs
-Pskip_jakarta_ee_tests
- name: Archive test run logs
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
if: always()
with:
name: test-logs-${{ matrix.os }}-${{ matrix.jdk }}-${{ matrix.dist }}
path: |
**/target/failsafe-reports/*-output.txt
**/target/**/logs/server.log