forked from kyrptonaught/Glass-Doors
-
Notifications
You must be signed in to change notification settings - Fork 3
45 lines (34 loc) · 1.12 KB
/
build.yaml
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
name: Build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: "17"
distribution: "temurin"
cache: gradle
- name: Make Gradle wrapper executable
run: chmod +x ./gradlew
- name: Validate Gradle wrapper
uses: gradle/wrapper-validation-action@v1
- name: Ensure no old datagenned files are present
run: test ! -d ./src/main/resources_generated
- name: Run Datagen
run: ./gradlew runDatagen --stacktrace
- name: Validate Datagen results
run: test -d ./src/main/resources_generated/.cache
- name: Build the mod
run: ./gradlew build --stacktrace -x runDatagen
- name: Upload build artifacts
uses: actions/upload-artifact@v3
with:
name: build-artifacts
path: build/libs
- name: Cleanup Gradle Cache
run: |
rm -f ~/.gradle/caches/modules-2/modules-2.lock
rm -f ~/.gradle/caches/modules-2/gc.properties