-
Notifications
You must be signed in to change notification settings - Fork 2
56 lines (43 loc) · 1.48 KB
/
ci-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
name: build
on: [push, pull_request]
jobs:
build-latest-target:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 17
- name: Cache maven repo
uses: actions/cache@v3
if: github.event_name == 'push' || github.event_name == 'pull_request'
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-latest-${{ hashFiles('**/pom.xml') }}-${{ hashFiles('targets/latest/latest.target') }}
restore-keys: |
${{ runner.os }}-maven-latest-
- name: Build with Maven (latest target)
working-directory: ./releng
run: mvn clean verify -Dtycho.localArtifacts=ignore -B -V
build-base-target:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 17
- name: Cache maven repo
uses: actions/cache@v3
if: github.event_name == 'push' || github.event_name == 'pull_request'
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-base-${{ hashFiles('**/pom.xml') }}-${{ hashFiles('targets/base/base.target') }}
restore-keys: |
${{ runner.os }}-maven-base-
- name: Build with Maven (base target)
working-directory: ./releng
run: mvn clean verify -Dtycho.localArtifacts=ignore -Dtarget=base -B -V