Skip to content

Commit

Permalink
Added build job for Paper 1.16.5 | 2.6.4-2.8.7
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeGBLP committed Jan 26, 2025
1 parent c4cf4e9 commit 285006c
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/tests_paper_1_16_5_older_versions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Paper 1.16.5 | 2.6.4-2.8.7

on:
- push
- pull_request

jobs:
build:
if: "! contains(toJSON(github.event.commits.*.message), '[ci skip]')"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: validate gradle wrapper
uses: gradle/wrapper-validation-action@v2
- name: Set up JDK 16
uses: actions/setup-java@v4
with:
java-version: '16'
distribution: 'adopt'
cache: gradle
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build Skript and run test scripts
run: ./gradlew clean luskTestOlderSkriptVersions
- name: Upload Nightly Build
uses: actions/upload-artifact@v4
if: success()
with:
name: lusk-nightly.jar
path: build/libs/*

0 comments on commit 285006c

Please sign in to comment.