-
Notifications
You must be signed in to change notification settings - Fork 6
102 lines (86 loc) · 2.86 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
name: Build on Latest and All Platforms
# Triggered on both PRs and pushes to main
on:
push:
branches: [ "main", "staging" ]
pull_request:
branches: [ "main", "staging" ]
jobs:
# Runs on Ubuntu latest (version 22.04)
ubuntu:
name: 'Build Ubuntu Latest'
runs-on: ubuntu-latest
environment: jdk21-building
permissions:
contents: read
# This will run on the JDK environment specified above
steps:
- uses: actions/checkout@v4
- name: Set up JDK ${{ vars.JAVA_VERSION }}
uses: actions/setup-java@v4
with:
java-version: ${{ vars.JAVA_VERSION }}
distribution: ${{ vars.UBUNTU_DISTRIBUTION }}
- name: Cache Maven dependencies
uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Run the Maven verify phase
run: mvn --batch-mode --update-snapshots verify
- name: Build with Maven
run: mvn -B package --file pom.xml
# Runs on MacOS latest (version 12.0)
macos:
name: 'Build MacOS Latest'
runs-on: macos-latest
environment: jdk21-building
permissions:
contents: read
# This will run on the JDK environment specified above
steps:
- uses: actions/checkout@v4
- name: Set up JDK ${{ vars.JAVA_VERSION }}
uses: actions/setup-java@v4
with:
java-version: ${{ vars.JAVA_VERSION }}
distribution: ${{ vars.MACOS_DISTRIBUTION }}
- name: Cache Maven dependencies
uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Run the Maven verify phase
run: mvn --batch-mode --update-snapshots verify
- name: Build with Maven
run: mvn -B package --file pom.xml
# Runs on Windows latest (version 2022)
windows:
name: 'Build Windows Latest'
runs-on: windows-latest
environment: jdk21-building
permissions:
contents: read
# This will run on the JDK environment specified above
steps:
- uses: actions/checkout@v4
- name: Set up JDK ${{ vars.JAVA_VERSION }}
uses: actions/setup-java@v4
with:
java-version: ${{ vars.JAVA_VERSION }}
distribution: ${{ vars.WINDOWS_DISTRIBUTION }}
- name: Cache Maven dependencies
uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Run the Maven verify phase
run: mvn --batch-mode --update-snapshots verify
- name: Build with Maven
run: mvn -B package --file pom.xml