Skip to content

Commit d8efc25

Browse files
authored
Build with gradle
* build: Switched to gradle * build: Switched to gradle * cicd: Added GH workflow for PRs * build: Using snapshot version * cicd: Added early-access workflow
1 parent cda6693 commit d8efc25

File tree

79 files changed

+703
-40200
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

79 files changed

+703
-40200
lines changed

.github/jreleaser-snapshot.yml

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

.github/release-drafter-config.yml

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

.github/spellcheck-settings.yml

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

.github/wordlist.txt

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

.github/workflows/build.yml

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
name: Build
2+
3+
on:
4+
pull_request:
5+
6+
jobs:
7+
build:
8+
name: Build
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- uses: actions/checkout@v4
13+
14+
- name: Set up Java
15+
uses: actions/setup-java@v4
16+
with:
17+
java-version: 21
18+
distribution: 'zulu'
19+
20+
- name: Cache Gradle
21+
uses: actions/cache@v4
22+
with:
23+
path: ~/.gradle/caches
24+
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}-${{ hashFiles('**/gradle.properties') }}
25+
restore-keys: |
26+
${{ runner.os }}-gradle-
27+
28+
- name: Cache Gradle wrapper
29+
uses: actions/cache@v4
30+
with:
31+
path: ~/.gradle/wrapper
32+
key: ${{ runner.os }}-gradlew-${{ hashFiles('**/gradlew') }}
33+
restore-keys: ${{ runner.os }}-gradlew-
34+
35+
- name: Build
36+
run: |
37+
./gradlew build aggregateTestReport -S
38+
39+
- name: Upload test reports
40+
if: failure()
41+
uses: actions/upload-artifact@v4
42+
with:
43+
name: test-reports
44+
path: |
45+
build/reports/tests/aggregate/

.github/workflows/codeql-analysis.yml

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

0 commit comments

Comments
 (0)