-
Notifications
You must be signed in to change notification settings - Fork 526
85 lines (82 loc) · 2.54 KB
/
build.yml
File metadata and controls
85 lines (82 loc) · 2.54 KB
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
name: Build
on: [push, pull_request, merge_group]
jobs:
build:
runs-on: ubuntu-24.04
steps:
- uses: actions/setup-java@v4
with:
distribution: 'microsoft'
java-version: '25'
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: gradle/actions/wrapper-validation@v4
- run: ./gradlew check build :buildSrc:check publishToMavenLocal --stacktrace
- uses: FabricMCBot/publish-checkstyle-report@4627c82002aa370b6cb2a3140f34c7a8c55a5297
if: ${{ failure() }}
with:
reports: |
**/build/reports/checkstyle/*.xml
- uses: actions/upload-artifact@v4
with:
name: Artifacts ${{ matrix.java }}
path: |
build/libs/
./*/build/libs/
build/publishMods/
- uses: actions/upload-artifact@v4
with:
name: Maven Local ${{ matrix.java }}
path: ~/.m2/repository/net/fabricmc/
client_test:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-java@v4
with:
distribution: 'microsoft'
java-version: '25'
- run: |
curl -L -o tracy-capture https://github.com/modmuss50/tracy-utils/releases/download/0.0.2/linux-x86_64-tracy-capture
chmod +x tracy-capture
mkdir run && echo "eula=true" >> run/eula.txt
- run: ./gradlew runClientGametest --stacktrace --warning-mode=fail
env:
ENABLE_TRACY: false
- uses: actions/upload-artifact@v4
if: always()
with:
name: Test Screenshots
path: run/screenshots
- uses: actions/upload-artifact@v4
if: always()
with:
name: Tracy Profile
path: profile.tracy
server_test:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-java@v4
with:
distribution: 'microsoft'
java-version: '25'
- run: mkdir run && echo "eula=true" >> run/eula.txt
- run: ./gradlew runAutoTestServer --stacktrace --warning-mode=fail
check_resources:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-java@v4
with:
distribution: 'microsoft'
java-version: '25'
- run: ./gradlew generateResources --stacktrace --warning-mode=fail
- run: if [ -n "$(git status --porcelain)" ]; then exit 1; fi