-
Notifications
You must be signed in to change notification settings - Fork 43
111 lines (94 loc) · 2.81 KB
/
gradle.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
name: Java CI with Gradle
on:
schedule:
- cron: '0 */6 * * *'
jobs:
should_run:
runs-on: ubuntu-latest
outputs:
should_run: ${{ steps.should_run.outputs.should_run }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Check if new commits exist
id: should_run
run: |
if git log --since="6 hours ago" --pretty=format:"%h - %an" | grep -q "-"; then
echo "should_run=true" >> $GITHUB_OUTPUT
else
echo "should_run=false" >> $GITHUB_OUTPUT
fi
build:
runs-on: ubuntu-latest
needs: should_run
if: ${{ needs.should_run.outputs.should_run == 'true' }}
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 21
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: artifacts
path: ./build/libs/
- name: Release Build
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
body_path: CHANGELOG.md
files: "./build/libs/**"
- name: Build Success
uses: rjstone/discord-webhook-notify@v1
if: success()
with:
severity: info
details: Build Succeeded!
webhookUrl: ${{ secrets.DISCORD_WEBHOOK }}
- name: Build Failure
uses: rjstone/discord-webhook-notify@v1
if: failure()
with:
severity: error
details: Build Failed!
webhookUrl: ${{ secrets.DISCORD_WEBHOOK }}
- name: Build Cancelled
uses: rjstone/discord-webhook-notify@v1
if: cancelled()
with:
severity: warn
details: Build Cancelled!
webhookUrl: ${{ secrets.DISCORD_WEBHOOK }}
checkstyle:
runs-on: ubuntu-latest
needs: should_run
if: ${{ needs.should_run.outputs.should_run == 'true' }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 21
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Checkstyle with Gradle
run: ./gradlew checkstyleMain
- name: Checkstyle Failure
uses: rjstone/discord-webhook-notify@v1
if: failure()
with:
severity: error
color: '#ff5500'
details: Checkstyle Failed!
webhookUrl: ${{ secrets.DISCORD_WEBHOOK }}