-
Notifications
You must be signed in to change notification settings - Fork 3
57 lines (55 loc) · 1.87 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
name: Java CI
on:
push:
pull_request:
branches:
- main
jobs:
Build:
strategy:
matrix:
jdkversion: [ 17 ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
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@v3.1.2
with:
name: Download-Bukkit
path: ./bukkit/target/AdvancedSensitiveWords-bukkit.jar
- name: Upload Velocity Artifacts
uses: actions/upload-artifact@v3.1.2
with:
name: Download-Velocity
path: ./velocity/target/AdvancedSensitiveWords-velocity.jar
- name: Upload BungeeCord Artifacts
uses: actions/upload-artifact@v3.1.2
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.2'
javaVersion: '20'
steps:
- uses: HaHaWTH/minecraft-plugin-runtime-test@paper
with:
server-version: ${{ matrix.mcVersion }}
java-version: ${{ matrix.javaVersion }}
artifact-name: Download-Bukkit