diff options
| author | Jakub Beránek <berykubik@gmail.com> | 2025-08-15 16:03:56 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-08-15 16:03:56 +0200 |
| commit | b474f89d5ebf378f4758b8e9a4da3bf600058d21 (patch) | |
| tree | 867dbe1508978f789ae7298fd40a0bfcb1aa13f2 /.github/workflows | |
| parent | 87d677b7d0375c0c06255d23fc7d55e7e37521e0 (diff) | |
| parent | 75b7d24a985ef9f6bab00414752dd74ceb47d114 (diff) | |
Rollup merge of #145311 - marcoieni:clean-disk-in-background-windows, r=Kobzol
ci: clean windows disk space in background
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/ci.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index df5dda76eb7..8266c03eaa7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -223,6 +223,11 @@ jobs: cd src/ci/citool CARGO_INCREMENTAL=0 CARGO_TARGET_DIR=../../../build/citool cargo build + - name: wait for Windows disk cleanup to finish + if: ${{ matrix.free_disk && startsWith(matrix.os, 'windows-') }} + run: | + python3 src/ci/scripts/free-disk-space-windows-wait.py + - name: run the build run: | set +e |
