2020-10-28 22:01:09 +01:00
|
|
|
# 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:
|
2021-06-11 19:56:25 +02:00
|
|
|
java: [16]
|
2020-10-28 22:01:09 +01:00
|
|
|
fail-fast: true
|
|
|
|
steps:
|
2021-10-23 14:07:37 +02:00
|
|
|
- uses: actions/checkout@v2.3.5
|
2021-01-30 14:33:22 +01:00
|
|
|
- name: JDK ${{ matrix.java }}
|
2021-10-23 14:07:37 +02:00
|
|
|
uses: actions/setup-java@v2.3.1
|
2020-10-28 22:01:09 +01:00
|
|
|
with:
|
2021-01-30 14:33:22 +01:00
|
|
|
java-version: ${{ matrix.java }}
|
2021-10-23 14:07:37 +02:00
|
|
|
cache: 'gradle'
|
|
|
|
distribution: 'temurin'
|
2020-10-28 22:01:09 +01:00
|
|
|
- name: Patch and build
|
|
|
|
run: |
|
|
|
|
git config --global user.email "no-reply@github.com"
|
|
|
|
git config --global user.name "Github Actions"
|
2021-06-14 21:12:21 +02:00
|
|
|
./gradlew applyPatches --stacktrace
|
|
|
|
./gradlew build --stacktrace
|