-
-
Notifications
You must be signed in to change notification settings - Fork 0
83 lines (70 loc) · 1.88 KB
/
build.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
name: build
on:
push:
branches:
- main
tags:
- '**'
paths-ignore:
- '.gitignore'
- 'LICENSE'
- 'README*'
pull_request:
paths-ignore:
- '.gitignore'
- 'LICENSE'
- 'README*'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 11, 17, 21 ]
name: Build with JDK ${{matrix.java}}
steps:
- uses: actions/checkout@v4
name: Checkout
- uses: actions/setup-java@v4
name: Setup JDK ${{matrix.java}}
with:
distribution: 'temurin'
java-version: ${{matrix.java}}
- name: Cache Maven packages
uses: actions/cache@v4
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Maven build
run: mvn -B -Plegacy verify
## Save the context information for use in Sonar analysis
- name: Save Build Context
if: ${{ matrix.java == '21' }}
run: echo "$GITHUB_CONTEXT" > target/build-context.json
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
## Attach the target directory for use in Sonar analysis
- name: Attach Build Output
if: ${{ matrix.java == '21' }}
uses: actions/upload-artifact@v4
with:
name: target
path: target/
javadoc:
runs-on: ubuntu-latest
name: Verify JavaDocs
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup JDK
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 21
- name: Setup Maven Cache
uses: actions/cache@v4
with:
path: ~/.m2/repository
key: m2-repository-${{ hashFiles('**/pom.xml') }}
- name: Generate JavaDocs
run: mvn -B verify javadoc:javadoc -DskipTests