-
Notifications
You must be signed in to change notification settings - Fork 192
45 lines (36 loc) · 1.25 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
name: Build CI
on: [ push ]
jobs:
Build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup JDK 21
uses: actions/setup-java@v4
with:
distribution: adopt
java-version: 21
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build
- name: Run Test Servers
timeout-minutes: 5
run: |
./gradlew fabric:runGametestServer & FABRIC_PID=$!
./gradlew neoforge:runGametestServer & NEOFORGE_PID=$!
wait $FABRIC_PID
FABRIC_EXIT_CODE=$?
wait $NEOFORGE_PID
NEOFORGE_EXIT_CODE=$?
if [ $FABRIC_EXIT_CODE -ne 0 ] || [ $NEOFORGE_EXIT_CODE -ne 0 ]; then
exit 1
fi
- name: Upload Build Artifacts
uses: actions/upload-artifact@v4
with:
name: build-artifacts
path: build/libs