feat: add --no-daemon
flag to Gradle build commands in CI workflows
All checks were successful
Build / build (pull_request) Successful in 3m56s
All checks were successful
Build / build (pull_request) Successful in 3m56s
This commit updates the CI build and release workflows by adding the `--no-daemon` flag to the Gradle build commands. This change affects the `build.yaml` and `release.yaml` files. - The `--no-daemon` flag is now included when running `./gradlew composeApp:buildDebug` and `./gradlew composeApp:debug`.
This commit is contained in:
parent
b161684cae
commit
ab14b90143
2 changed files with 3 additions and 3 deletions
2
.github/workflows/build.yaml
vendored
2
.github/workflows/build.yaml
vendored
|
@ -24,4 +24,4 @@ jobs:
|
|||
uses: android-actions/setup-android@v3
|
||||
|
||||
- name: Build with Gradle
|
||||
run: ./gradlew composeApp:buildDebug
|
||||
run: ./gradlew composeApp:buildDebug --no-daemon
|
||||
|
|
4
.github/workflows/release.yaml
vendored
4
.github/workflows/release.yaml
vendored
|
@ -23,10 +23,10 @@ jobs:
|
|||
uses: android-actions/setup-android@v3
|
||||
|
||||
- name: Build with Gradle
|
||||
run: ./gradlew composeApp:buildDebug
|
||||
run: ./gradlew composeApp:buildDebug --no-daemon
|
||||
|
||||
- name: Gradle Release
|
||||
run: ./gradlew composeApp:debug
|
||||
run: ./gradlew composeApp:debug --no-daemon
|
||||
|
||||
- name: Upload artifacts
|
||||
uses: actions/upload-artifact@v4
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue