Geyser/.github/workflows/pullrequest.yml

59 lines
1.7 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
2022-07-12 14:24:53 +00:00
- name: Set up JDK 17
2019-11-28 23:05:33 +00:00
uses: actions/setup-java@v1
with:
distribution: 'temurin'
2022-07-12 14:24:53 +00:00
java-version: 17
cache: 'gradle'
- name: submodules-init
uses: snickerbockers/submodules-init@v4
- name: Build with Gradle
run: ./gradlew build
- name: Archive artifacts (Geyser Fabric)
uses: actions/upload-artifact@v2
if: success()
with:
name: Geyser Fabric
path: bootstrap/fabric/build/libs/Geyser-Fabric.jar
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-Standalone.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