Skip to content

Commit

Permalink
Cleanup android out folder in between builds (to not run out of disk …
Browse files Browse the repository at this point in the history
…space)
  • Loading branch information
andy31415 committed Feb 16, 2022
1 parent fb46917 commit 81b12ee
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/android.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,18 @@ jobs:
path: |
.environment/gn_out/.ninja_log
.environment/pigweed-venv/*.log
- name: Build Android CHIPTool and CHIPTest
- name: Build Android CHIPTool and CHIPTest (ARM)
run: |
./scripts/run_in_build_env.sh \
"./scripts/build/build_examples.py --no-log-timestamps --target-glob 'android-{arm,arm64}-chip-*' build"
"./scripts/build/build_examples.py --no-log-timestamps --target-glob 'android-arm-chip-*' build"
- name: Clean out build output
run: rm -rf ./out
- name: Build Android CHIPTool and CHIPTest (ARM64)
run: |
./scripts/run_in_build_env.sh \
"./scripts/build/build_examples.py --no-log-timestamps --target-glob 'android-arm64-chip-*' build"
- name: Clean out build output
run: rm -rf ./out
# - name: Build Android Studio build (arm64 only)
# run: |
# ./scripts/run_in_build_env.sh \
Expand Down

0 comments on commit 81b12ee

Please sign in to comment.