mirror of
https://github.com/SparklyPower/SparklyPaper.git
synced 2026-01-06 15:51:42 +00:00
Remove builds without parallel world ticking, update the README
This commit is contained in:
41
.github/workflows/build-without-pwt.yml
vendored
41
.github/workflows/build-without-pwt.yml
vendored
@@ -1,41 +0,0 @@
|
||||
name: Patch and Build (without Parallel World Ticking)
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ "**" ]
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
# Only run on PRs if the source branch is on someone else's repo
|
||||
if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }}
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout Git Repository
|
||||
uses: actions/checkout@v3
|
||||
- name: Validate Gradle wrapper
|
||||
uses: gradle/wrapper-validation-action@v1
|
||||
- name: Setup Gradle
|
||||
uses: gradle/gradle-build-action@v2
|
||||
- name: Set up JDK
|
||||
uses: actions/setup-java@v3
|
||||
with:
|
||||
distribution: 'temurin'
|
||||
java-version: '21'
|
||||
- name: Configure Git User Details
|
||||
run: git config --global user.email "actions@github.com" && git config --global user.name "Github Actions"
|
||||
- name: Grant execute permission for gradlew
|
||||
run: chmod +x gradlew
|
||||
- name: Delete Parallel world ticking patch
|
||||
run: rm sparklypaper-server/minecraft-patches/features/*-Parallel-world-ticking.patch sparklypaper-server/paper-patches/features/*-Parallel-world-ticking.patch
|
||||
- name: Apply Patches
|
||||
run: ./gradlew -PsparklypaperImplementationVersionSuffix=without-pwt applyAllPatches
|
||||
- name: Build
|
||||
run: ./gradlew -PsparklypaperImplementationVersionSuffix=without-pwt build
|
||||
- name: Create Paperclip JAR
|
||||
run: ./gradlew -PsparklypaperImplementationVersionSuffix=without-pwt createMojmapPaperclipJar
|
||||
- uses: actions/upload-artifact@v4
|
||||
name: "Upload Mojang Mappings Paperclip JAR"
|
||||
with:
|
||||
name: SparklyPaper (without Parallel World Ticking) Paperclip (Mojang Mappings - mojmap)
|
||||
path: "sparklypaper-server/build/libs/SparklyPaper-paperclip-*-mojmap.jar"
|
||||
Reference in New Issue
Block a user