Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-11-15 12:30:06 +01:00
2ec6c99152
Closes #6474
32 Zeilen
1.0 KiB
YAML
32 Zeilen
1.0 KiB
YAML
# 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.3.5
|
|
- name: JDK ${{ matrix.java }}
|
|
uses: actions/setup-java@v2.3.1
|
|
with:
|
|
java-version: ${{ matrix.java }}
|
|
cache: 'gradle'
|
|
distribution: 'temurin'
|
|
- name: Patch and build
|
|
run: |
|
|
git config --global user.email "no-reply@github.com"
|
|
git config --global user.name "Github Actions"
|
|
./gradlew applyPatches --stacktrace
|
|
./gradlew build --stacktrace
|