podman-build/contrib/cirrus/win-unit-main.ps1
2025-10-11 12:30:35 +09:00

14 lines
246 B
PowerShell

#!/usr/bin/env powershell
. $PSScriptRoot\win-lib.ps1
if ($Env:CI -eq "true") {
Push-Location "$ENV:CIRRUS_WORKING_DIR\repo"
} else {
Push-Location $PSScriptRoot\..\..
}
Run-Command ".\winmake.ps1 localunit"
Pop-Location