2021-07-08 22:05:01 +00:00
|
|
|
# This workflow will build a Java project with Maven
|
|
|
|
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
|
|
|
|
|
|
|
|
name: Java CI with Maven
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ master ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ master ]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2021-07-09 00:02:02 +00:00
|
|
|
- name: Cache Maven packages
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: ~/.m2
|
|
|
|
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
|
|
|
|
restore-keys: ${{ runner.os }}-m2
|
2021-07-08 22:08:55 +00:00
|
|
|
- name: Checkout submodules
|
|
|
|
uses: textbook/git-checkout-submodule-action@2.1.1
|
2021-07-08 22:05:01 +00:00
|
|
|
- name: Set up JDK 16
|
|
|
|
uses: actions/setup-java@v2
|
|
|
|
with:
|
|
|
|
java-version: '16'
|
|
|
|
distribution: 'adopt'
|
2021-07-08 23:48:09 +00:00
|
|
|
#- name: Compile Spigot
|
|
|
|
# uses: SeanOMik/Action-SpigotMC@b23370e6a4c3e9cdd38b8d5bcd4a543f8c1e1c19
|
|
|
|
# with:
|
|
|
|
# versions: 1.14,1.15,1.16.1,1.16.3,1.16.5,1.17
|
|
|
|
# threads: -1
|
|
|
|
# remapped: remapped-mojang
|
|
|
|
- name: Compile Remapped Mojang Spigot
|
|
|
|
uses: SeanOMik/Action-SpigotMC@b23370e6a4c3e9cdd38b8d5bcd4a543f8c1e1c19
|
|
|
|
with:
|
|
|
|
versions: 1.17
|
|
|
|
threads: -1
|
|
|
|
remapped: remapped-mojang
|
2021-07-10 04:57:50 +00:00
|
|
|
- name: Debug - java version
|
|
|
|
run: |
|
|
|
|
java -version
|
2021-07-08 22:05:01 +00:00
|
|
|
- name: Install with Maven
|
2021-07-08 23:48:09 +00:00
|
|
|
run: |
|
2021-07-08 23:52:56 +00:00
|
|
|
sudo mvn install
|
2021-07-08 22:05:01 +00:00
|
|
|
- name: Build with Maven
|
2021-07-08 23:48:09 +00:00
|
|
|
run: |
|
2021-07-08 23:52:56 +00:00
|
|
|
sudo mvn package
|