aboutsummaryrefslogtreecommitdiffhomepage
path: root/.github
diff options
context:
space:
mode:
authorMariell <[email protected]>2020-10-28 22:01:09 +0100
committerGitHub <[email protected]>2020-10-28 17:01:09 -0400
commit8e6d90c2d2e64683ed9d63087cf887ace58770d9 (patch)
treeebe88c2c11313ab31b57f2559730ac42ea49c14a /.github
parent0ac53efb30de4f07cc673c37d5a24b24b750395b (diff)
downloadPaper-8e6d90c2d2e64683ed9d63087cf887ace58770d9.tar.gz
Paper-8e6d90c2d2e64683ed9d63087cf887ace58770d9.zip
[CI-SKIP] Add a GitHub Actions job (#4703)
Co-Authored-By: Chew <[email protected]> Co-authored-by: Chew <[email protected]>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml36
1 files changed, 36 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
new file mode 100644
index 0000000000..dc159f206c
--- /dev/null
+++ b/.github/workflows/build.yml
@@ -0,0 +1,36 @@
+# 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: [11, 8]
+ fail-fast: true
+ steps:
+ - uses: actions/checkout@v2
+ - name: JDK ${{ matrix.java }}
+ uses: actions/setup-java@v1
+ with:
+ java-version: ${{ matrix.java }}
+ - name: Cache maven
+ uses: actions/cache@v2
+ with:
+ path: |
+ ~/.m2/repository/
+ work/Minecraft
+ key: ${{ runner.os }}-paper-${{ hashFiles('**/pom.xml') }}
+ restore-keys: ${{ runner.os }}-paper
+ - name: Patch and build
+ run: |
+ git config --global user.email "[email protected]"
+ git config --global user.name "Github Actions"
+ ./paper build