From 4de559d70de3fc1d1e8b7c38f724984f3c048f43 Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Mon, 8 Sep 2025 08:21:38 -0500 Subject: [PATCH] Increase the size of the Windows dev drives from 20GB -> 25GB (#15734) We ran out of disk space in https://github.com/astral-sh/uv/actions/runs/17551474262/job/49844770034?pr=15727 Closes https://github.com/astral-sh/uv/issues/15729 --- .github/workflows/setup-dev-drive.ps1 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/setup-dev-drive.ps1 b/.github/workflows/setup-dev-drive.ps1 index 474b082dc..c003b4e1f 100644 --- a/.github/workflows/setup-dev-drive.ps1 +++ b/.github/workflows/setup-dev-drive.ps1 @@ -24,7 +24,7 @@ if ($env:DEPOT_RUNNER -eq "1") { # Create VHD and configure drive using diskpart $vhdPath = "C:\uv_dev_drive.vhdx" @" -create vdisk file="$vhdPath" maximum=20480 type=expandable +create vdisk file="$vhdPath" maximum=25600 type=expandable attach vdisk create partition primary active @@ -41,9 +41,9 @@ assign letter=V Write-Output "Using existing drive at D:" $Drive = "D:" } else { - # The size (20 GB) is chosen empirically to be large enough for our + # The size (25 GB) is chosen empirically to be large enough for our # workflows; larger drives can take longer to set up. - $Volume = New-VHD -Path C:/uv_dev_drive.vhdx -SizeBytes 20GB | + $Volume = New-VHD -Path C:/uv_dev_drive.vhdx -SizeBytes 25GB | Mount-VHD -Passthru | Initialize-Disk -Passthru | New-Partition -AssignDriveLetter -UseMaximumSize |