Skip to content

[Port] Update to special/reindev (v2.4.1) #11157

[Port] Update to special/reindev (v2.4.1)

[Port] Update to special/reindev (v2.4.1) #11157

Workflow file for this run

name: Build
on:
push:
branches-ignore:
- l10n_master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: update cache
uses: actions/cache@v4
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
~/.gradle/unimined
key: ${{ runner.os }}-gradle-${{ hashFiles('gradle/wrapper/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Set up Gradle JDK
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew --build-cache --info --stacktrace build
- name: Merge Jars with Gradle
run: ./gradlew --build-cache --info --stacktrace fusejars
- uses: actions/upload-artifact@v4
with:
name: artifacts
path: build/libs/*.jar
- name: stop daemon
run: ./gradlew --stop