Fix build & Update Gradle #52
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: Build Leaf 1.21 | |
on: | |
push: | |
branches: [ "ver/1.21" ] | |
pull_request: | |
branches: [ "ver/1.21" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@main | |
- uses: gradle/wrapper-validation-action@main | |
- name: Set up JDK | |
uses: graalvm/setup-graalvm@main | |
with: | |
java-version: 21 | |
github-token: "${{ secrets.GITHUB_TOKEN }}" | |
cache: gradle | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Configure Git | |
run: git config --global user.email "no-reply@github.com" && git config --global user.name "Github Actions" | |
- name: Apply patches | |
run: ./gradlew -Dorg.gradle.jvmargs="-Dgraal.CompilerConfiguration=enterprise -Dgraal.UsePriorityInlining=true -Dgraal.Vectorization=true -Dgraal.OptDuplication=true --add-modules jdk.incubator.vector" applyPatches --stacktrace --no-daemon | |
- name: Create MojmapPaperclipJar | |
run: ./gradlew -Dorg.gradle.jvmargs="-Dgraal.CompilerConfiguration=enterprise -Dgraal.UsePriorityInlining=true -Dgraal.Vectorization=true -Dgraal.OptDuplication=true --add-modules jdk.incubator.vector" createMojmapPaperclipJar --stacktrace --no-daemon | |
- name: Create ReobfPaperclipJar | |
run: ./gradlew -Dorg.gradle.jvmargs="-Dgraal.CompilerConfiguration=enterprise -Dgraal.UsePriorityInlining=true -Dgraal.Vectorization=true -Dgraal.OptDuplication=true --add-modules jdk.incubator.vector" createReobfPaperclipJar --stacktrace --no-daemon | |
- name: Rename Paperclip Jar | |
run: | | |
mv build/libs/leaf-paperclip-1.21-R0.1-SNAPSHOT-mojmap.jar ./leaf-1.21-mojmap.jar | |
mv build/libs/leaf-paperclip-1.21-R0.1-SNAPSHOT-reobf.jar ./leaf-1.21-reobf.jar | |
# - name: Publish API | |
# if: github.event_name != 'pull_request' | |
# run: | | |
# ./gradlew :leaf-api:publish | |
# ./gradlew publishDevBundlePublicationToLeafRepository -PpublishDevBundle=true | |
# env: | |
# ORG_GRADLE_PROJECT_leafUsername: ${{ secrets.REPO_USER }} | |
# ORG_GRADLE_PROJECT_leafPassword: ${{ secrets.REPO_PASSWORD }} | |
- name: Upload Leaf | |
uses: actions/upload-artifact@main | |
with: | |
name: Leaf 1.21 | |
path: ./leaf-1.21-*.jar | |
- name: Release Leaf | |
if: github.event_name != 'pull_request' | |
uses: marvinpinto/action-automatic-releases@master | |
with: | |
title: "Leaf 1.21" | |
automatic_release_tag: "ver-1.21" | |
repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
files: "./leaf-1.21-*.jar" | |
prerelease: false |