Paper/.github/workflows/build.yml

41 lines
1.4 KiB
YAML
Raw Normal View History

# Here lie dragons!
#
# Note that there is no artifact step in this script. We do not want Paperclip
# jars to be built for every push & PR; our CI handles pushes to branches, while
# PRs can themselves link to Paperclip jars if it is necessary. Official such
# PRs will take use of testing builds.
name: Build Paper
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [16]
fail-fast: true
steps:
- uses: actions/checkout@v2
2021-01-30 13:33:22 +00:00
- name: JDK ${{ matrix.java }}
uses: actions/setup-java@v2
with:
2021-01-30 13:33:22 +00:00
java-version: ${{ matrix.java }}
distribution: 'adopt'
2021-06-13 23:33:04 +00:00
- name: Cache gradle
uses: actions/cache@v2
with:
path: |
2021-06-13 22:45:42 +00:00
~/.gradle/caches
~/.gradle/jdks
~/.gradle/native
~/.gradle/wrapper
key: ${{ runner.os }}-paper-2-${{ hashFiles('**/*.gradle*', 'gradle/**', 'gradle.properties') }}
2021-03-16 16:02:53 +00:00
restore-keys: ${{ runner.os }}-paper-2
- name: Patch and build
run: |
git config --global user.email "no-reply@github.com"
git config --global user.name "Github Actions"
2021-06-14 19:12:21 +00:00
./gradlew applyPatches --stacktrace
./gradlew build --stacktrace