-
-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move Gradle clean to post-debug/pre-release
- Avoid poisoned cache for release variant only - Preserve hosted agent free disk space - Fix: java.io.IOException: No space left on device #639
- Loading branch information
Showing
1 changed file
with
6 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -66,17 +66,18 @@ jobs: | |
cd cmake-3.23.1-linux-x86_64 | ||
./bin/cmake --version | ||
# Avoid poisoned cache problems | ||
- name: Delete Android build pre-computed outputs | ||
- name: Build application Debug APK with Gradle | ||
uses: gradle/[email protected] | ||
with: | ||
arguments: clean | ||
arguments: assembleDebug | ||
build-root-directory: android | ||
|
||
- name: Build application Debug APK with Gradle | ||
# Avoid release poisoned cache problems | ||
# Preserve hosted agent free disk space | ||
- name: Delete Android build pre-computed outputs | ||
uses: gradle/[email protected] | ||
with: | ||
arguments: assembleDebug | ||
arguments: clean | ||
build-root-directory: android | ||
|
||
- name: Build application Release APK with Gradle | ||
|