-
Notifications
You must be signed in to change notification settings - Fork 41
50 lines (42 loc) · 1.14 KB
/
test-2.3.14.yaml
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
name: Build and Test Mojarra 2.3.14.SP
on:
workflow_dispatch:
branches:
- 2.3.14.SP
push:
branches:
- 2.3.14.SP
pull_request:
branches:
- 2.3.14.SP
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java-version: [ 8, 17, 21 ]
steps:
- uses: actions/checkout@v3
- name: Set up JDK ${{ matrix.java-version }}
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: ${{ matrix.java-version }}
cache: 'maven'
- name: Restore cached Maven packages
id: cache-maven-packages
uses: actions/cache/restore@v3
with:
path: |
~/.m2
~/.local/share/containers
key: ${{ runner.os }}-m2-${{ matrix.java-version }}-${{ hashFiles('**/pom.xml') }}
- name: Clean and build
run: mvn -B -fae clean package -Dgithub=true
- name: Cache Maven packages
uses: actions/cache/save@v3
with:
path: |
~/.m2
~/.local/share/containers
key: ${{ runner.os }}-m2-${{ matrix.java-version }}-${{ hashFiles('**/pom.xml') }}