Plex-FAWE/.github/workflows/gradle.yml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

57 lines
1.5 KiB
YAML
Raw Normal View History

2019-11-06 16:45:41 +00:00
name: Java CI
on:
push:
branches:
2020-09-19 14:59:58 +00:00
- 'main'
2019-11-06 16:45:41 +00:00
pull_request:
branches:
2020-09-19 14:59:58 +00:00
- 'main'
2019-11-06 16:45:41 +00:00
jobs:
test:
2020-09-02 17:40:24 +00:00
runs-on: ubuntu-latest
2020-10-03 20:28:58 +00:00
strategy:
matrix:
java: [1.8, 1.11]
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:
2020-10-03 20:28:58 +00:00
java-version: ${{ matrix.java }}
2020-09-02 17:40:24 +00:00
- name: Cache Gradle
uses: actions/cache@v2
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
2020-10-03 20:28:58 +00:00
key: ${{ runner.os }}-${{ matrix.java }}-gradle-${{ hashFiles('**/*.gradle*') }}
2020-09-02 17:40:24 +00:00
restore-keys: |
2020-10-03 20:28:58 +00:00
${{ runner.os }}-${{ matrix.java }}-gradle-
2020-09-02 17:40:24 +00:00
- name: Cache local Maven repository
uses: actions/cache@v2
with:
path: ~/.m2/repository
2020-10-03 20:28:58 +00:00
key: ${{ runner.os }}-${{ matrix.java }}-maven-${{ hashFiles('**/pom.xml') }}
2020-09-02 17:40:24 +00:00
restore-keys: |
2020-10-03 20:28:58 +00:00
${{ runner.os }}-${{ matrix.java }}-maven-
- 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
2020-09-07 18:49:05 +00:00
run: java -jar BuildTools.jar --rev 1.16.2
2019-11-06 16:45:41 +00:00
- name: Test with Gradle
2020-09-07 18:49:05 +00:00
run: ./gradlew clean build sourcesJar javadocJar
2020-03-19 22:45:24 +00:00