Skip to content

Commit 2cf8570

Browse files
committed
build: attempt to claim more disk space on macOS GHA runner
1 parent d2479fa commit 2cf8570

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/test-macos.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,11 @@ jobs:
6666
- name: tools/doc/node_modules workaround
6767
run: make tools/doc/node_modules
6868
- name: Build
69-
run: make build-ci -j$(getconf _NPROCESSORS_ONLN) V=1 CONFIG_FLAGS="--error-on-warn"
69+
run: |
70+
df -h
71+
sudo rm -rf /usr/local/lib/android/sdk/ndk
72+
sudo rm -rf /usr/share/dotnet
73+
df -h
74+
make build-ci -j$(getconf _NPROCESSORS_ONLN) V=1 CONFIG_FLAGS="--error-on-warn"
7075
- name: Test
7176
run: make run-ci -j$(getconf _NPROCESSORS_ONLN) V=1 TEST_CI_ARGS="-p actions --node-args='--test-reporter=spec' --node-args='--test-reporter-destination=stdout' --measure-flakiness 9"

0 commit comments

Comments
 (0)