-
Notifications
You must be signed in to change notification settings - Fork 256
73 lines (65 loc) · 2.32 KB
/
maven.yml
File metadata and controls
73 lines (65 loc) · 2.32 KB
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
# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Java CI with Maven
on:
push:
branches:
- develop
- support/2.3.X
- support/3.0.X
pull_request:
branches:
- develop
- support/2.3.X
- support/3.0.X
jobs:
build-jdk21:
runs-on: ubuntu-latest
name: Build project
concurrency:
# The commit SHA or the branch name of the pull request. See: https://docs.github.com/en/actions/reference/context-and-expression-syntax-for-github-actions
group: ${{ github.event_name == 'pull_request' && github.head_ref || github.sha}}
cancel-in-progress: true
steps:
- name: Checkout repository
uses: actions/checkout@v6
with:
fetch-depth: 0 # Required by GIB to calculate Git diffs
- name: Cache Maven packages
uses: actions/cache@v5
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Set up JDK
uses: actions/setup-java@v5
with:
distribution: 'corretto'
java-version: '21'
- name: Determine GIB Reference
id: gib-base
run: |
if [ "${{ github.event_name }}" == "pull_request" ]; then
# For PRs, compare against the remote target branch
echo "BASE_REF=refs/remotes/origin/${{ github.base_ref }}" >> $GITHUB_ENV
else
# For pushes, compare against the previous commit
echo "BASE_REF=${{ github.event.before }}" >> $GITHUB_ENV
fi
- name: Build with Maven
run: |
./mvnw -version && whoami && umask -S && umask a+rw && umask -S && \
./mvnw clean verify \
-P docker-clean \
-Dhttp.keepAlive=false \
-Dmaven.wagon.http.pool=false \
-Dmaven.wagon.http.retryHandler.count=3 \
--no-snapshot-updates \
--batch-mode \
--no-transfer-progress \
-Dgib.referenceBranch=$BASE_REF \
-Dgib.buildDownstream=always
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}