From f565bc230e6cae060fb96d29beb6023f137224ba Mon Sep 17 00:00:00 2001 From: granny Date: Sun, 25 May 2025 14:39:37 -0700 Subject: [PATCH] use daemon in github actions workflow --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c073a7728..f2c695646 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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