2019-11-29 00:05:33 +01:00
|
|
|
name: Build Pull Request
|
|
|
|
|
2023-03-08 03:59:21 +01:00
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
paths-ignore:
|
|
|
|
- '.github/ISSUE_TEMPLATE/*.yml'
|
|
|
|
- '.idea/copyright/*.xml'
|
|
|
|
- '.gitignore'
|
|
|
|
- 'CONTRIBUTING.md'
|
|
|
|
- 'LICENSE'
|
|
|
|
- 'Jenkinsfile '
|
|
|
|
- 'README.md'
|
|
|
|
- 'licenseheader.txt'
|
2019-11-29 00:05:33 +01:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-07-12 16:24:53 +02:00
|
|
|
- name: Set up JDK 17
|
2023-05-18 22:16:00 +02:00
|
|
|
uses: actions/setup-java@v3
|
2019-11-29 00:05:33 +01:00
|
|
|
with:
|
2022-07-12 16:24:53 +02:00
|
|
|
java-version: 17
|
2023-02-17 20:37:01 +01:00
|
|
|
distribution: temurin
|
|
|
|
|
|
|
|
- name: Check if the author has forked the API repo
|
2023-05-18 22:16:00 +02:00
|
|
|
uses: Kas-tle/find-forks-action@v1.0.1
|
2023-02-17 20:37:01 +01:00
|
|
|
id: find_forks
|
|
|
|
with:
|
|
|
|
owner: GeyserMC
|
|
|
|
repo: api
|
|
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
|
|
|
- name: Use author's API repo if it exists
|
2023-06-18 23:45:59 +02:00
|
|
|
if: ${{ steps.find_forks.outputs.target_branch_found == 'true' }}
|
2023-02-17 20:37:01 +01:00
|
|
|
env:
|
|
|
|
API_FORK_URL: ${{ steps.find_forks.outputs.user_fork_url }}
|
|
|
|
API_FORK_BRANCH: ${{ github.event.pull_request.head.ref }}
|
|
|
|
run: |
|
|
|
|
git clone "${API_FORK_URL}" --single-branch --branch "${API_FORK_BRANCH}" api
|
|
|
|
cd api
|
|
|
|
./gradlew publishToMavenLocal
|
|
|
|
|
|
|
|
- name: Checkout repository and submodules
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
submodules: recursive
|
|
|
|
path: geyser
|
|
|
|
|
|
|
|
- name: Build Geyser
|
|
|
|
uses: gradle/gradle-build-action@v2
|
|
|
|
with:
|
|
|
|
arguments: build
|
|
|
|
build-root-directory: geyser
|
2022-10-17 02:21:29 +02:00
|
|
|
|
|
|
|
- name: Archive artifacts (Geyser Fabric)
|
2023-03-08 03:59:21 +01:00
|
|
|
uses: actions/upload-artifact@v3
|
2022-10-17 02:21:29 +02:00
|
|
|
if: success()
|
|
|
|
with:
|
|
|
|
name: Geyser Fabric
|
2023-02-22 15:11:06 +01:00
|
|
|
path: geyser/bootstrap/fabric/build/libs/Geyser-Fabric.jar
|
2023-03-08 03:59:21 +01:00
|
|
|
if-no-files-found: error
|
2020-03-05 09:21:23 +01:00
|
|
|
- name: Archive artifacts (Geyser Standalone)
|
2023-03-08 03:59:21 +01:00
|
|
|
uses: actions/upload-artifact@v3
|
2019-11-29 00:05:33 +01:00
|
|
|
if: success()
|
|
|
|
with:
|
2020-03-05 09:21:23 +01:00
|
|
|
name: Geyser Standalone
|
2023-02-22 15:11:06 +01:00
|
|
|
path: geyser/bootstrap/standalone/build/libs/Geyser-Standalone.jar
|
2023-03-08 03:59:21 +01:00
|
|
|
if-no-files-found: error
|
2020-05-26 16:47:34 +02:00
|
|
|
- name: Archive artifacts (Geyser Spigot)
|
2023-03-08 03:59:21 +01:00
|
|
|
uses: actions/upload-artifact@v3
|
2020-03-05 09:21:23 +01:00
|
|
|
if: success()
|
|
|
|
with:
|
2020-05-26 16:47:34 +02:00
|
|
|
name: Geyser Spigot
|
2023-02-22 15:11:06 +01:00
|
|
|
path: geyser/bootstrap/spigot/build/libs/Geyser-Spigot.jar
|
2023-03-08 03:59:21 +01:00
|
|
|
if-no-files-found: error
|
2020-03-05 09:21:23 +01:00
|
|
|
- name: Archive artifacts (Geyser BungeeCord)
|
2023-03-08 03:59:21 +01:00
|
|
|
uses: actions/upload-artifact@v3
|
2020-03-05 09:21:23 +01:00
|
|
|
if: success()
|
|
|
|
with:
|
|
|
|
name: Geyser BungeeCord
|
2023-02-22 15:11:06 +01:00
|
|
|
path: geyser/bootstrap/bungeecord/build/libs/Geyser-BungeeCord.jar
|
2023-03-08 03:59:21 +01:00
|
|
|
if-no-files-found: error
|
2020-03-05 09:21:23 +01:00
|
|
|
- name: Archive artifacts (Geyser Velocity)
|
2023-03-08 03:59:21 +01:00
|
|
|
uses: actions/upload-artifact@v3
|
2020-03-05 09:21:23 +01:00
|
|
|
if: success()
|
|
|
|
with:
|
|
|
|
name: Geyser Velocity
|
2023-02-22 15:11:06 +01:00
|
|
|
path: geyser/bootstrap/velocity/build/libs/Geyser-Velocity.jar
|
2023-03-08 03:59:21 +01:00
|
|
|
if-no-files-found: error
|