mirror of
https://github.com/actions/runner-images.git
synced 2025-12-15 22:26:56 +00:00
* Install NSIS from Source Forge * Switch to 3.06.1 Co-authored-by: Sergey Dolin <v-sedoli@micorosoft.com>
12 lines
530 B
PowerShell
12 lines
530 B
PowerShell
################################################################################
|
|
## File: Install-NSIS.ps1
|
|
## Desc: Install NSIS
|
|
################################################################################
|
|
|
|
Install-Binary -Url 'https://downloads.sourceforge.net/project/nsis/NSIS%203/3.06.1/nsis-3.06.1-setup.exe' -Name nsis-3.06.1-setup.exe -ArgumentList ('/S')
|
|
|
|
$NsisPath = "${env:ProgramFiles(x86)}\NSIS\"
|
|
Add-MachinePathItem $NsisPath
|
|
$env:Path = Get-MachinePath
|
|
|
|
Invoke-PesterTests -TestFile "Tools" -TestName "NSIS" |