From 8e6d90c2d2e64683ed9d63087cf887ace58770d9 Mon Sep 17 00:00:00 2001 From: Mariell Date: Wed, 28 Oct 2020 22:01:09 +0100 Subject: [PATCH] [CI-SKIP] Add a GitHub Actions job (#4703) Co-Authored-By: Chew Co-authored-by: Chew --- .github/workflows/build.yml | 36 ++++++++++++++++++++++++++++++++++++ .travis.yml | 16 ---------------- 2 files changed, 36 insertions(+), 16 deletions(-) create mode 100644 .github/workflows/build.yml delete mode 100644 .travis.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 000000000..dc159f206 --- /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 "no-reply@github.com" + git config --global user.name "Github Actions" + ./paper build diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 97dfdf004..000000000 --- a/.travis.yml +++ /dev/null @@ -1,16 +0,0 @@ -language: java -dist: trusty -os: linux -jdk: - - oraclejdk8 - - openjdk11 -git: - submodules: false -before_install: - - git config --global user.email "travis-ci@travis-ci.com" - - git config --global user.name "Travis CI" - - ./paper build -cache: - directories: - - '$HOME/.m2/repository' - - 'work/Minecraft'