-
Notifications
You must be signed in to change notification settings - Fork 243
74 lines (67 loc) · 2.13 KB
/
Copy pathpr-java-ci.yml
File metadata and controls
74 lines (67 loc) · 2.13 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
74
name: Java CI
on:
pull_request:
paths-ignore:
- 'docs/**'
- '.github/**'
branches:
- master
release:
types:
- created
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 21 ]
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: 'temurin'
cache: 'maven'
cache-dependency-path: extra/pom.xml
java-version: ${{ matrix.java }}
- name: Build with Maven
id: build
run: |
mvn -B package --file extra/pom.xml | tee build_output.txt
echo "exit_code=$result" >> "$GITHUB_OUTPUT"
- name: Format build output for PR comment
if: steps.build.outputs.exit_code != '0'
run: |
if grep -q '\[INFO\] Starting audit\.\.\.' build_output.txt; then
{
echo "❌ **Checkstyle Issues Detected**"
echo ""
echo '```'
sed -n '/\[INFO\] Starting audit\.\.\./,/Audit done\./p' build_output.txt | sed '0,/Audit done\./d'
echo '```'
} > comment.txt
else
{
echo "❌ **Java CI Test Failures**"
echo ""
echo '```'
sed -n '/\[ERROR\] Failures:/,/\[ERROR\] Tests run:/p' build_output.txt
echo '```'
} > comment.txt
fi
- name: Print comment.txt content
if: always() # Ensures this runs even if a previous step failed
run: |
echo "------ comment.txt content ------"
cat comment.txt || echo "comment.txt not found"
echo "--------------------------------"
- name: Comment on PR with build failure output
if: steps.build.outputs.exit_code != '0'
uses: peter-evans/create-or-update-comment@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
issue-number: ${{ github.event.pull_request.number }}
body-path: comment.txt
- name: Fail if error is found in logs
if: steps.build.outputs.exit_code != '0'
run: exit 1