mirror of
https://github.com/SparklyPower/SparklyPaper.git
synced 2025-12-19 15:09:27 +00:00
Actually let's use two different workflows instead
This commit is contained in:
41
.github/workflows/build-without-pwt.yml
vendored
Normal file
41
.github/workflows/build-without-pwt.yml
vendored
Normal file
@@ -0,0 +1,41 @@
|
|||||||
|
name: Patch and Build
|
||||||
|
|
||||||
|
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: '17'
|
||||||
|
- 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 patches/server/*-Parallel-world-ticking.patch
|
||||||
|
- name: Apply Patches
|
||||||
|
run: ./gradlew applyPatches
|
||||||
|
- name: Build
|
||||||
|
run: ./gradlew build
|
||||||
|
- name: Create reobf Paperclip JAR
|
||||||
|
run: ./gradlew -PsparklypaperImplementationVersionSuffix=without-pwt createReobfPaperclipJar
|
||||||
|
- uses: actions/upload-artifact@v2
|
||||||
|
name: "Upload Paperclip JAR"
|
||||||
|
with:
|
||||||
|
name: SparklyPaper (without Parallel World Ticking) Paperclip
|
||||||
|
path: "build/libs/SparklyPaper-paperclip-*.jar"
|
||||||
13
.github/workflows/build.yml
vendored
13
.github/workflows/build.yml
vendored
@@ -37,16 +37,3 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
name: SparklyPaper Paperclip
|
name: SparklyPaper Paperclip
|
||||||
path: "build/libs/SparklyPaper-paperclip-*.jar"
|
path: "build/libs/SparklyPaper-paperclip-*.jar"
|
||||||
- name: Delete Parallel world ticking patch
|
|
||||||
run: rm patches/server/*-Parallel-world-ticking.patch
|
|
||||||
- name: Apply Patches (without Parallel World Ticking)
|
|
||||||
run: ./gradlew applyPatches
|
|
||||||
- name: Build (without Parallel World Ticking)
|
|
||||||
run: ./gradlew build
|
|
||||||
- name: Create reobf Paperclip JAR (without Parallel World Ticking)
|
|
||||||
run: ./gradlew -PsparklypaperImplementationVersionSuffix=without-pwt createReobfPaperclipJar
|
|
||||||
- uses: actions/upload-artifact@v2
|
|
||||||
name: "Upload Paperclip JAR (without Parallel World Ticking)"
|
|
||||||
with:
|
|
||||||
name: SparklyPaper (without Parallel World Ticking) Paperclip
|
|
||||||
path: "build/libs/SparklyPaper-paperclip-*.jar"
|
|
||||||
|
|||||||
Reference in New Issue
Block a user