1.18.2 support #59
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: Java CI | |
on: [workflow_dispatch, push, pull_request] | |
jobs: | |
# Build 1.18.2 NMS | |
v1_18_2: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'adopt-hotspot' | |
java-version: '17' | |
- name: Cache 1.18.2 Maven package | |
id: cachePillage | |
uses: actions/cache@v3 | |
with: | |
path: ~/.m2/repository/org/bukkit/craftbukkit/1.18.2-R0.1-SNAPSHOT/ | |
key: ${{ runner.os }}-1.18.2 | |
restore-keys: ${{ runner.os }}-1.18.2 | |
- name: Cache Maven packages | |
id: cacheMain | |
uses: actions/cache@v3 | |
with: | |
path: ~/.m2 | |
key: ${{ runner.os }}-m2_1.18.2 | |
restore-keys: ${{ runner.os }}-m2_1.18.2 | |
- name: Setup BuildTools | |
run: mkdir BuildTools && wget -O BuildTools/BuildTools.jar https://hub.spigotmc.org/jenkins/job/BuildTools/lastSuccessfulBuild/artifact/target/BuildTools.jar | |
- name: Check 1.18.2 | |
id: v1_18_2 | |
run: test -f ~/.m2/repository/org/bukkit/craftbukkit/1.18.2-R0.1-SNAPSHOT/craftbukkit-1.18.2-R0.1-SNAPSHOT.jar && echo "::set-output name=sucess::true" || echo "::set-output name=sucess::false" | |
- name: Build 1.18.2 | |
if: steps.v1_18_2.outputs.sucess != 'true' | |
run: cd BuildTools && java -jar BuildTools.jar --rev 1.18.2 --remapped | |
build: | |
runs-on: ubuntu-latest | |
needs: [v1_18_2] | |
steps: | |
- name: Checkout AP-Turrets | |
uses: actions/checkout@v3 | |
with: | |
path: AP-Turrets | |
- name: Checkout Movecraft-Combat | |
uses: actions/checkout@v3 | |
with: | |
repository: 'APDevTeam/Movecraft-Combat' | |
path: Movecraft-Combat | |
ref: 'main' | |
- name: Checkout Movecraft-WorldGuard | |
uses: actions/checkout@v3 | |
with: | |
repository: 'APDevTeam/Movecraft-WorldGuard' | |
path: Movecraft-WorldGuard | |
ref: 'main' | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'adopt-hotspot' | |
java-version: '17' | |
- name: Cache 1.18.2 Maven package | |
id: cachePillage | |
uses: actions/cache@v3 | |
with: | |
path: ~/.m2/repository/org/bukkit/craftbukkit/1.18.2-R0.1-SNAPSHOT/ | |
key: ${{ runner.os }}-1.18.2 | |
restore-keys: ${{ runner.os }}-1.18.2 | |
- name: Cache Maven packages | |
id: cacheMain | |
uses: actions/cache@v3 | |
with: | |
path: ~/.m2 | |
key: ${{ runner.os }}-m2 | |
restore-keys: ${{ runner.os }}-m2 | |
# Build Movecraft-Combat | |
- name: Build Movecraft-Combat | |
run: mvn -B package -T 1C --file Movecraft-Combat/pom.xml | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# Build Movecraft-WorldGuard | |
- name: Build Movecraft-WorldGuard | |
run: mvn -B package -T 1C --file Movecraft-WorldGuard/pom.xml | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build AP-Turrets | |
run: mvn -B package -T 1C --file AP-Turrets/pom.xml | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Stage jar | |
run: mkdir staging && cp AP-Turrets/target/AP-Turrets.jar staging | |
- name: Rename jar | |
run: mv staging/AP-Turrets.jar staging/AP-Turrets_$GITHUB_SHA.jar | |
- name: Upload jar | |
uses: actions/upload-artifact@v3 | |
with: | |
name: AP-Turrets_Dev-Build | |
path: staging/AP-Turrets_*.jar |