TamableFoxes/.github/workflows/maven.yml

58 lines
1.8 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-11 12:49:32 -04:00
- name: Download OpenJDK 16
run: wget -O $RUNNER_TEMP/java_package.tar.gz https://github.com/AdoptOpenJDK/openjdk16-binaries/releases/download/jdk16u-2021-05-08-12-45/OpenJDK16U-jdk_x64_linux_hotspot_2021-05-08-12-45.tar.gz
2021-07-08 18:05:01 -04:00
- name: Set up JDK 16
uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: '16.0.1+9'
2021-07-11 12:49:32 -04:00
architecture: x64
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-10 00:57:50 -04:00
- name: Debug - java version
run: |
java -version
2021-07-08 18:05:01 -04:00
- name: Install with Maven
env:
JAVA_HOME: /opt/hostedtoolcache/Java_Adopt_jdk/16.0.1-9/x64
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
env:
JAVA_HOME: /opt/hostedtoolcache/Java_Adopt_jdk/16.0.1-9/x64
2021-07-08 19:48:09 -04:00
run: |
2021-07-08 19:52:56 -04:00
sudo mvn package