-
-
Notifications
You must be signed in to change notification settings - Fork 1
37 lines (34 loc) · 1.26 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
name: Build
on: [ push ]
concurrency:
group: "${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: true
jobs:
build:
name: Build (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ windows-latest, ubuntu-latest, macos-latest ]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: zulu
java-version: 21
- name: Cache Dependencies
uses: actions/cache@v4
with:
# Avoid caching generated artifacts
path: |
~/.m2/repository/*
!~/.m2/repository/com/github/cowwoc/requirements
key: "${{ runner.OS }}-maven-${{ hashFiles('**/pom.xml') }}"
# Maven command-line options:
# --batch-mode: recommended in CI to inform maven to not run in interactive mode (less logs)
# -V: strongly recommended in CI, will display the JDK and Maven versions in use.
# -Dsurefire.useFile=false: useful in CI. Displays test errors in the logs directly (instead of
# having to crawl the workspace files to see the cause).
# -e: Display stack-traces on failure
- name: Build
run: ./mvnw install --batch-mode -V "-Dsurefire.useFile=false" -e