Merge pull request #90 from SupremeMortal/feature/build-prs

Use new GitHub Actions to build PRs
This commit is contained in:
Redned 2019-11-28 17:31:35 -06:00 committed by GitHub
commit cb0d0796fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 29 additions and 17 deletions

View File

@ -1,17 +0,0 @@
name: Java CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Build with Maven
run: mvn -B package --file pom.xml

29
.github/workflows/pullrequest.yml vendored Normal file
View File

@ -0,0 +1,29 @@
name: Build Pull Request
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/cache@v1
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Build with Maven
run: mvn -B package
- name: Archive artifacts
uses: actions/upload-artifact@v1
if: success()
with:
name: Geyser
path: target/Geyser.jar