Skip to content

Commit 33d4323

Browse files
committed
WIP: tweak memory settings
1 parent 68c9678 commit 33d4323

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/build.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -203,13 +203,14 @@ jobs:
203203
sudo rm -rf /usr/share/dotnet # Free up 3.4G
204204
sudo rm -rf /usr/share/swift # Free up 3.2G
205205
sudo rm -rf /usr/local/share/vcpkg # Size unknown, but obvious duplicate
206-
sudo du -h --max-depth=3 /
207206
208207
- name: Check available disk space
209208
run: ${{ matrix.check_disk_space }}
210209

211210
- name: Build packages
212-
run: ./vcpkg install --vcpkg-root=${{ matrix.vcpkg_path }} --clean-after-build --recurse --feature-flags="-compilertracking,manifests,registries,versions" --x-abi-tools-use-exact-versions --keep-going
211+
run: |
212+
bash -c "while true; do df -h ${{ matrix.vcpkg_path }} && du --max-depth=1 -h . && sleep 10; done" &
213+
./vcpkg install --vcpkg-root=${{ matrix.vcpkg_path }} --clean-after-build --recurse --feature-flags="-compilertracking,manifests,registries,versions" --x-abi-tools-use-exact-versions --keep-going
213214
working-directory: ${{ matrix.vcpkg_path }}
214215

215216
- name: "[Windows] Sign release DLLs"

0 commit comments

Comments
 (0)