-
Notifications
You must be signed in to change notification settings - Fork 3
59 lines (57 loc) · 1.96 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
name: AdvancedSensitiveWords CI
on:
push:
pull_request:
branches:
- pro
jobs:
Build:
strategy:
matrix:
jdkversion: [ 21 ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: ${{ matrix.jdkversion }}
cache: 'maven'
- name: Build
run: mvn -V -B clean package --file pom.xml
- name: Upload Bukkit Artifacts
uses: actions/upload-artifact@v4
with:
name: Download-Bukkit
path: ./bukkit/target/AdvancedSensitiveWords-bukkit.jar
- name: Upload Velocity Artifacts
uses: actions/upload-artifact@v4
with:
name: Download-Velocity
path: ./velocity/target/AdvancedSensitiveWords-velocity.jar
- name: Upload BungeeCord Artifacts
uses: actions/upload-artifact@v4
with:
name: Download-BungeeCord
path: ./bungee/target/AdvancedSensitiveWords-bungee.jar
runtime-test:
name: Plugin Runtime Test
needs: [Build]
runs-on: ubuntu-latest
strategy:
matrix:
include:
- mcVersion: '1.8.8'
javaVersion: '8'
- mcVersion: '1.12.2'
javaVersion: '8'
- mcVersion: '1.20.4'
javaVersion: '17'
- mcVersion: '1.21.1'
javaVersion: '21'
steps:
- uses: HaHaWTH/minecraft-plugin-runtime-test@paper
with:
server-version: ${{ matrix.mcVersion }}
java-version: ${{ matrix.javaVersion }}
artifact-name: Download-Bukkit