Geyser/.github/workflows/pullrequest.yml

52 lines
1.5 KiB
YAML
Raw Normal View History

2019-11-28 23:05:33 +00:00
name: Build Pull Request
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
2020-06-24 23:32:07 +00:00
- uses: actions/checkout@v2
- name: Set up JDK 16
2019-11-28 23:05:33 +00:00
uses: actions/setup-java@v1
with:
distribution: 'temurin'
java-version: 16
cache: 'gradle'
- name: submodules-init
uses: snickerbockers/submodules-init@v4
- name: Build with Gradle
run: ./gradlew build
2020-03-05 08:21:23 +00:00
- name: Archive artifacts (Geyser Standalone)
2020-06-24 23:32:07 +00:00
uses: actions/upload-artifact@v2
2019-11-28 23:05:33 +00:00
if: success()
with:
2020-03-05 08:21:23 +00:00
name: Geyser Standalone
path: bootstrap/standalone/build/libs/Geyser.jar
2020-05-26 14:47:34 +00:00
- name: Archive artifacts (Geyser Spigot)
2020-06-24 23:32:07 +00:00
uses: actions/upload-artifact@v2
2020-03-05 08:21:23 +00:00
if: success()
with:
2020-05-26 14:47:34 +00:00
name: Geyser Spigot
path: bootstrap/spigot/build/libs/Geyser-Spigot.jar
2020-03-05 08:21:23 +00:00
- name: Archive artifacts (Geyser BungeeCord)
2020-06-24 23:32:07 +00:00
uses: actions/upload-artifact@v2
2020-03-05 08:21:23 +00:00
if: success()
with:
name: Geyser BungeeCord
path: bootstrap/bungeecord/build/libs/Geyser-BungeeCord.jar
2020-03-05 08:21:23 +00:00
- name: Archive artifacts (Geyser Sponge)
2020-06-24 23:32:07 +00:00
uses: actions/upload-artifact@v2
2020-03-05 08:21:23 +00:00
if: success()
with:
name: Geyser Sponge
path: bootstrap/sponge/build/libs/Geyser-Sponge.jar
2020-03-05 08:21:23 +00:00
- name: Archive artifacts (Geyser Velocity)
2020-06-24 23:32:07 +00:00
uses: actions/upload-artifact@v2
2020-03-05 08:21:23 +00:00
if: success()
with:
name: Geyser Velocity
path: bootstrap/velocity/build/libs/Geyser-Velocity.jar