forked from snowleopard1863/Ap-Turrets
-
Notifications
You must be signed in to change notification settings - Fork 5
105 lines (96 loc) · 3.32 KB
/
maven.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
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
name: Java CI
on: [workflow_dispatch, push, pull_request]
jobs:
# Build 1.18.2 NMS
v1_18_2:
runs-on: ubuntu-latest
steps:
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'adopt-hotspot'
java-version: '17'
- name: Cache 1.18.2 Maven package
id: cachePillage
uses: actions/cache@v3
with:
path: ~/.m2/repository/org/bukkit/craftbukkit/1.18.2-R0.1-SNAPSHOT/
key: ${{ runner.os }}-1.18.2
restore-keys: ${{ runner.os }}-1.18.2
- name: Cache Maven packages
id: cacheMain
uses: actions/cache@v3
with:
path: ~/.m2
key: ${{ runner.os }}-m2_1.18.2
restore-keys: ${{ runner.os }}-m2_1.18.2
- name: Setup BuildTools
run: mkdir BuildTools && wget -O BuildTools/BuildTools.jar https://hub.spigotmc.org/jenkins/job/BuildTools/lastSuccessfulBuild/artifact/target/BuildTools.jar
- name: Check 1.18.2
id: v1_18_2
run: test -f ~/.m2/repository/org/bukkit/craftbukkit/1.18.2-R0.1-SNAPSHOT/craftbukkit-1.18.2-R0.1-SNAPSHOT.jar && echo "::set-output name=sucess::true" || echo "::set-output name=sucess::false"
- name: Build 1.18.2
if: steps.v1_18_2.outputs.sucess != 'true'
run: cd BuildTools && java -jar BuildTools.jar --rev 1.18.2 --remapped
build:
runs-on: ubuntu-latest
needs: [v1_18_2]
steps:
- name: Checkout AP-Turrets
uses: actions/checkout@v3
with:
path: AP-Turrets
- name: Checkout Movecraft-Combat
uses: actions/checkout@v3
with:
repository: 'APDevTeam/Movecraft-Combat'
path: Movecraft-Combat
ref: 'main'
- name: Checkout Movecraft-WorldGuard
uses: actions/checkout@v3
with:
repository: 'APDevTeam/Movecraft-WorldGuard'
path: Movecraft-WorldGuard
ref: 'main'
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'adopt-hotspot'
java-version: '17'
- name: Cache 1.18.2 Maven package
id: cachePillage
uses: actions/cache@v3
with:
path: ~/.m2/repository/org/bukkit/craftbukkit/1.18.2-R0.1-SNAPSHOT/
key: ${{ runner.os }}-1.18.2
restore-keys: ${{ runner.os }}-1.18.2
- name: Cache Maven packages
id: cacheMain
uses: actions/cache@v3
with:
path: ~/.m2
key: ${{ runner.os }}-m2
restore-keys: ${{ runner.os }}-m2
# Build Movecraft-Combat
- name: Build Movecraft-Combat
run: mvn -B package -T 1C --file Movecraft-Combat/pom.xml
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# Build Movecraft-WorldGuard
- name: Build Movecraft-WorldGuard
run: mvn -B package -T 1C --file Movecraft-WorldGuard/pom.xml
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Build AP-Turrets
run: mvn -B package -T 1C --file AP-Turrets/pom.xml
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Stage jar
run: mkdir staging && cp AP-Turrets/target/AP-Turrets.jar staging
- name: Rename jar
run: mv staging/AP-Turrets.jar staging/AP-Turrets_$GITHUB_SHA.jar
- name: Upload jar
uses: actions/upload-artifact@v3
with:
name: AP-Turrets_Dev-Build
path: staging/AP-Turrets_*.jar