use daemon in github actions workflow

This commit is contained in:
granny 2025-05-25 14:39:37 -07:00
parent 470df8e7e6
commit f565bc230e
No known key found for this signature in database

View File

@ -21,12 +21,12 @@ jobs:
- 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 applyAllPatches --no-daemon --stacktrace
run: ./gradlew applyAllPatches --stacktrace
- name: Build
run: ./gradlew build --no-daemon --stacktrace
run: ./gradlew build --stacktrace
- name: Rebuild on Failure
if: ${{ failure() }}
run: |
./gradlew clean cleanCache --refresh-dependencies
./gradlew applyAllPatches --no-daemon --stacktrace
./gradlew build --no-daemon --stacktrace
./gradlew applyAllPatches --stacktrace
./gradlew build --stacktrace