2020-10-28 21:01:09 +00: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:
|
2021-12-05 05:19:04 +00:00
|
|
|
# Only run on PRs if the source branch is on someone else's repo
|
|
|
|
if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }}
|
2020-10-28 21:01:09 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2021-11-22 08:26:14 +00:00
|
|
|
java: [17]
|
2020-10-28 21:01:09 +00:00
|
|
|
fail-fast: true
|
|
|
|
steps:
|
2022-10-26 15:44:55 +00:00
|
|
|
- uses: actions/checkout@v3
|
2021-01-30 13:33:22 +00:00
|
|
|
- name: JDK ${{ matrix.java }}
|
2022-10-22 12:13:05 +00:00
|
|
|
uses: actions/setup-java@v3.6.0
|
2020-10-28 21:01:09 +00:00
|
|
|
with:
|
2021-01-30 13:33:22 +00:00
|
|
|
java-version: ${{ matrix.java }}
|
2021-10-23 12:07:37 +00:00
|
|
|
cache: 'gradle'
|
|
|
|
distribution: 'temurin'
|
2020-10-28 21:01:09 +00: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 19:12:21 +00:00
|
|
|
./gradlew applyPatches --stacktrace
|
|
|
|
./gradlew build --stacktrace
|