Skip to content

ci: don't cleanup windows disk #145704

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 22, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 2 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,12 +117,12 @@ jobs:
with:
fetch-depth: 2

# Free up disk space on Linux and Windows by removing preinstalled components that
# Free up disk space on Linux by removing preinstalled components that
# we do not need. We do this to enable some of the less resource
# intensive jobs to run on free runners, which however also have
# less disk space.
- name: free up disk space
run: src/ci/scripts/free-disk-space.sh
run: src/ci/scripts/free-disk-space-linux.sh
if: matrix.free_disk

# If we don't need to free up disk space then just report how much space we have
Expand Down Expand Up @@ -223,11 +223,6 @@ 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
Expand Down
1 change: 0 additions & 1 deletion src/ci/github-actions/jobs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ runners:

- &job-windows
os: windows-2025
free_disk: true
<<: *base-job

- &job-windows-8c
Expand Down
72 changes: 0 additions & 72 deletions src/ci/scripts/free-disk-space-windows-start.py

This file was deleted.

92 changes: 0 additions & 92 deletions src/ci/scripts/free-disk-space-windows-wait.py

This file was deleted.

35 changes: 0 additions & 35 deletions src/ci/scripts/free-disk-space-windows.ps1

This file was deleted.

10 changes: 0 additions & 10 deletions src/ci/scripts/free-disk-space.sh

This file was deleted.

29 changes: 0 additions & 29 deletions src/ci/scripts/free_disk_space_windows_util.py

This file was deleted.

Loading