2019-11-06 16:45:41 +00:00
|
|
|
name: Java CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2020-07-21 18:29:57 +00:00
|
|
|
- '1.16'
|
2019-11-06 16:45:41 +00:00
|
|
|
pull_request:
|
|
|
|
branches:
|
2020-07-21 18:29:57 +00:00
|
|
|
- '1.16'
|
2019-11-06 16:45:41 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
2020-09-02 17:40:24 +00:00
|
|
|
runs-on: ubuntu-latest
|
2019-11-06 16:45:41 +00:00
|
|
|
|
|
|
|
steps:
|
2020-03-20 00:12:21 +00:00
|
|
|
- name: Checkout
|
2020-09-02 17:41:37 +00:00
|
|
|
uses: actions/checkout@v2.3.2
|
2020-03-20 00:12:21 +00:00
|
|
|
- name: Setup Java JDK
|
2020-09-02 17:40:24 +00:00
|
|
|
uses: actions/setup-java@v1.4.2
|
2019-11-06 16:45:41 +00:00
|
|
|
with:
|
|
|
|
java-version: 1.8
|
2020-09-02 17:40:24 +00:00
|
|
|
- name: Cache Gradle
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
~/.gradle/caches
|
|
|
|
~/.gradle/wrapper
|
|
|
|
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-gradle-
|
|
|
|
- name: Cache local Maven repository
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: ~/.m2/repository
|
|
|
|
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-maven-
|
2020-09-03 21:48:13 +00:00
|
|
|
- name: Cache BuildTools decompiled code
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: $GITHUB_WORKSPACE/work
|
|
|
|
key: ${{ runner.os }}-buildtools
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-buildtools
|
2020-09-02 17:40:24 +00:00
|
|
|
- name: Test enviornment
|
|
|
|
run: echo $GITHUB_WORKSPACE
|
2020-03-19 22:45:24 +00:00
|
|
|
- name: Download BuildTools
|
|
|
|
run: wget https://hub.spigotmc.org/jenkins/job/BuildTools/lastSuccessfulBuild/artifact/target/BuildTools.jar
|
2020-03-19 22:47:48 +00:00
|
|
|
- name: Run BuildTools
|
|
|
|
run: java -jar BuildTools.jar --rev latest
|
2019-11-06 16:45:41 +00:00
|
|
|
- name: Test with Gradle
|
2019-11-14 19:29:03 +00:00
|
|
|
run: ./gradlew clean build -x test
|
2020-03-19 22:45:24 +00:00
|
|
|
|