Skip to content

Commit e24c520

Browse files
committed
ci: drop --no-daemon from lint (keep single-worker fix)
The single Gradle worker (-Dorg.gradle.workers.max=1) is what serializes the lint worker and dodges the ModifierDeclarationDetector classloader race; --no-daemon added a fresh-JVM + config-cache-reload cost that inflated the app job wall-clock without helping robustness.
1 parent f9194f0 commit e24c520

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
run: |
4343
for attempt in 1 2; do
4444
echo "::group::lint attempt $attempt"
45-
./gradlew :app:lintDebug --stacktrace --no-daemon \
45+
./gradlew :app:lintDebug --stacktrace \
4646
-Dorg.gradle.workers.max=1 && { echo "::endgroup::"; exit 0; }
4747
echo "::endgroup::"
4848
echo "lint attempt $attempt failed; retrying" >&2

0 commit comments

Comments
 (0)