Fix: Properly check whether the so_reuseport
socket option is available
#4314
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Pull Request | |
on: | |
pull_request: | |
merge_group: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up JDK 17 | |
# See https://github.com/actions/setup-java/commits | |
uses: actions/setup-java@387ac29b308b003ca37ba93a6cab5eb57c8f5f93 # v4.0.0 | |
with: | |
java-version: 17 | |
distribution: temurin | |
- name: Check if the author has forked the API repo | |
# See https://github.com/Kas-tle/find-forks-action/commits | |
uses: Kas-tle/find-forks-action@1b5447d1e3c7a8ed79583dd817cc5399686eed3a | |
id: find_forks | |
with: | |
owner: GeyserMC | |
repo: api | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Use author's API repo if it exists | |
if: ${{ steps.find_forks.outputs.target_branch_found == 'true' }} | |
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 | |
# See https://github.com/actions/checkout/commits | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
with: | |
submodules: recursive | |
path: geyser | |
- name: Validate Gradle Wrapper | |
# See https://github.com/gradle/wrapper-validation-action/commits | |
uses: gradle/wrapper-validation-action@699bb18358f12c5b78b37bb0111d3a0e2276e0e2 # v2.1.1 | |
- name: Build Geyser | |
# See https://github.com/gradle/gradle-build-action/commits | |
uses: gradle/actions/setup-gradle@417ae3ccd767c252f5661f1ace9f835f9654f2b5 # v3.1.0 from https://github.com/gradle/actions/commits | |
with: | |
arguments: build | |
build-root-directory: geyser | |
- name: Archive artifacts (Geyser Fabric) | |
# See https://github.com/actions/upload-artifact/commits | |
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1 | |
if: success() | |
with: | |
name: Geyser Fabric | |
path: geyser/bootstrap/mod/fabric/build/libs/Geyser-Fabric.jar | |
if-no-files-found: error | |
- name: Archive artifacts (Geyser NeoForge) | |
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 | |
if: success() | |
with: | |
name: Geyser NeoForge | |
path: geyser/bootstrap/mod/neoforge/build/libs/Geyser-NeoForge.jar | |
if-no-files-found: error | |
- name: Archive artifacts (Geyser Standalone) | |
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 | |
if: success() | |
with: | |
name: Geyser Standalone | |
path: geyser/bootstrap/standalone/build/libs/Geyser-Standalone.jar | |
if-no-files-found: error | |
- name: Archive artifacts (Geyser Spigot) | |
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 | |
if: success() | |
with: | |
name: Geyser Spigot | |
path: geyser/bootstrap/spigot/build/libs/Geyser-Spigot.jar | |
if-no-files-found: error | |
- name: Archive artifacts (Geyser BungeeCord) | |
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 | |
if: success() | |
with: | |
name: Geyser BungeeCord | |
path: geyser/bootstrap/bungeecord/build/libs/Geyser-BungeeCord.jar | |
if-no-files-found: error | |
- name: Archive artifacts (Geyser Velocity) | |
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 | |
if: success() | |
with: | |
name: Geyser Velocity | |
path: geyser/bootstrap/velocity/build/libs/Geyser-Velocity.jar | |
if-no-files-found: error | |
- name: Archive artifacts (Geyser ViaProxy) | |
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 | |
if: success() | |
with: | |
name: Geyser ViaProxy | |
path: geyser/bootstrap/viaproxy/build/libs/Geyser-ViaProxy.jar | |
if-no-files-found: error |