Skip to content

Commit aeda2bb

Browse files
authored
Use continue-on-error for jobs trying to save space by removing dir (project-chip#29827)
1 parent 769ac9f commit aeda2bb

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

.github/actions/checkout-submodules-and-bootstrap/action.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,9 @@ runs:
3333
# there is roughly 1.4GB that remains in this cache that is useless from
3434
# this point onwards.
3535
shell: bash
36+
continue-on-error: true
3637
run: |
37-
du -sh $HOME/.cipd-cache-dir/ || true
38+
du -sh $HOME/.cipd-cache-dir/
3839
rm -rf $HOME/.cipd-cache-dir/ || echo "Removing cipd cache dir failed"
3940
- name: Dump disk info after checkout submodule & Bootstrap
4041
shell: bash

.github/workflows/full-android.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ jobs:
6363
# This should not generally be needed, however android CI runs out of space
6464
# We do not need pigweed cross compile here because we use android NDK
6565
# compilers. Removing this package saves a significant amount of space.
66+
continue-on-error: true
6667
run: |
6768
du -sh .environment/cipd/packages/arm
6869
rm -rf .environment/cipd/packages/arm

.github/workflows/smoketest-android.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ jobs:
5252
# This should not generally be needed, however android CI runs out of space
5353
# We do not need pigweed cross compile here because we use android NDK
5454
# compilers. Removing this package save significant amount of space.
55+
continue-on-error: true
5556
run: |
5657
du -sh .environment/cipd/packages/arm
5758
rm -rf .environment/cipd/packages/arm

0 commit comments

Comments
 (0)