Merge pull request #2007 from davotoula/ci-build-stop-daemons-after-build

Added ./gradlew --stop (with if: always()) after the Gradle steps in both test and build-desktop jobs
This commit is contained in:
Vitor Pamplona
2026-03-29 10:21:39 -04:00
committed by GitHub
+8
View File
@@ -74,6 +74,10 @@ jobs:
- name: Test (gradle)
run: ./gradlew test --no-daemon
- name: Stop Gradle Daemon
if: always()
run: ./gradlew --stop
- name: Android Test Report
uses: asadmansr/android-test-report-action@v1.2.0
if: ${{ always() && matrix.os == 'ubuntu-latest' }}
@@ -191,6 +195,10 @@ jobs:
- name: Build Desktop Distribution
run: ./gradlew :desktopApp:${{ matrix.task }}
- name: Stop Gradle Daemon
if: always()
run: ./gradlew --stop
- name: Upload Desktop Distribution
uses: actions/upload-artifact@v6
with: