1
0
mirror of https://github.com/j178/prek.git synced 2026-04-03 17:34:03 +02:00
Files
prek/.github/workflows/setup-dev-drive.ps1
2025-09-10 00:34:43 +08:00

26 lines
789 B
PowerShell

# This creates a 10GB dev drive, and exports all required environment
# variables so that rustup, prek and others all use the dev drive as much
# as possible.
# $Volume = New-VHD -Path C:/prek_dev_drive.vhdx -SizeBytes 10GB |
# Mount-VHD -Passthru |
# Initialize-Disk -Passthru |
# New-Partition -AssignDriveLetter -UseMaximumSize |
# Format-Volume -FileSystem ReFS -Confirm:$false -Force
#
# Write-Output $Volume
$Drive = "D:"
$Tmp = "$($Drive)\prek-tmp"
# Create the directory ahead of time in an attempt to avoid race-conditions
New-Item $Tmp -ItemType Directory
Write-Output `
"DEV_DRIVE=$($Drive)" `
"TMP=$($Tmp)" `
"TEMP=$($Tmp)" `
"PREK_INTERNAL__TEST_DIR=$($Tmp)" `
"RUSTUP_HOME=$($Drive)/.rustup" `
"CARGO_HOME=$($Drive)/.cargo" `
>> $env:GITHUB_ENV