Adding buildtools mappings - 7 #9
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: 1.16.5 | |
on: | |
- push | |
- pull_request | |
jobs: | |
v1_16_5: | |
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 Lusk and run test scripts | |
run: ./gradlew clean luskTest_1_16_5_all | |
- name: Upload Nightly Build | |
uses: actions/upload-artifact@v4 | |
if: success() | |
with: | |
name: lusk-nightly.jar | |
path: build/libs/* |