Skip to content

Commit e2a4018

Browse files
committed
clean
1 parent 1797679 commit e2a4018

File tree

9 files changed

+53
-426
lines changed

9 files changed

+53
-426
lines changed

.github/workflows/build.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: Java Build
2+
3+
on: [ push, pull_request, workflow_dispatch ]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
if: |
9+
!contains(github.event.head_commit.message, '[ci skip]')
10+
steps:
11+
- name: Checkout
12+
uses: actions/checkout@v3
13+
with:
14+
fetch-depth: 30
15+
16+
- name: Set up JDK 21
17+
uses: actions/setup-java@v3
18+
with:
19+
distribution: 'temurin'
20+
java-version: '21'
21+
cache: gradle
22+
23+
- name: Grant execute permission for gradlew
24+
run: chmod +x gradlew
25+
26+
- name: Validate Gradle Wrapper
27+
uses: gradle/wrapper-validation-action@v1
28+
29+
- name: Build with Gradle
30+
uses: gradle/gradle-build-action@v2
31+
with:
32+
arguments: build -x test --stacktrace
33+
34+
- name: Upload Build Artifact
35+
uses: actions/upload-artifact@v4
36+
with:
37+
path: ${{ github.workspace }}/build/libs

.github/workflows/build_1605.yml

Lines changed: 0 additions & 64 deletions
This file was deleted.

.github/workflows/build_1802.yml

Lines changed: 0 additions & 64 deletions
This file was deleted.

.github/workflows/build_1902.yml

Lines changed: 0 additions & 64 deletions
This file was deleted.

.github/workflows/build_2001.yml

Lines changed: 0 additions & 64 deletions
This file was deleted.

.github/workflows/build_2004.yml

Lines changed: 0 additions & 64 deletions
This file was deleted.

0 commit comments

Comments
 (0)