TamableFoxes/.github/workflows/maven.yml

48 lines
1.3 KiB
YAML
Raw Normal View History

2021-07-08 18:05:01 -04: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-08 20:02:02 -04: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 18:08:55 -04:00
- name: Checkout submodules
uses: textbook/git-checkout-submodule-action@2.1.1
2021-07-08 18:05:01 -04:00
- name: Set up JDK 16
uses: actions/setup-java@v2
with:
java-version: '16'
distribution: 'adopt'
2021-07-08 19:48:09 -04: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-08 18:05:01 -04:00
- name: Install with Maven
2021-07-08 19:48:09 -04:00
run: |
2021-07-08 19:52:56 -04:00
sudo mvn install
2021-07-08 18:05:01 -04:00
- name: Build with Maven
2021-07-08 19:48:09 -04:00
run: |
2021-07-08 19:52:56 -04:00
sudo mvn package