mirror of https://github.com/astral-sh/uv
25 lines
710 B
PowerShell
25 lines
710 B
PowerShell
# This creates a 20GB dev drive, and exports all required environment
|
|
# variables so that rustup, uv and others all use the dev drive as much
|
|
# as possible.
|
|
$Volume = New-VHD -Path C:/uv_dev_drive.vhdx -SizeBytes 20GB |
|
|
Mount-VHD -Passthru |
|
|
Initialize-Disk -Passthru |
|
|
New-Partition -AssignDriveLetter -UseMaximumSize |
|
|
Format-Volume -FileSystem ReFS -Confirm:$false -Force
|
|
|
|
Write-Output $Volume
|
|
|
|
$Drive = "$($Volume.DriveLetter):"
|
|
$Tmp = "$($Drive)/uv-tmp"
|
|
|
|
Write-Output `
|
|
"DEV_DRIVE=$($Drive)" `
|
|
"TMP=$($Tmp)" `
|
|
"TEMP=$($Tmp)" `
|
|
"UV_INTERNAL__TEST_DIR=$($Tmp)" `
|
|
"RUSTUP_HOME=$($Drive)/.rustup" `
|
|
"CARGO_HOME=$($Drive)/.cargo" `
|
|
"UV_WORKSPACE=$($Drive)/uv" `
|
|
>> $env:GITHUB_ENV
|
|
|