do not install NSIS for PRs

This commit is contained in:
Ted John 2016-05-04 20:48:07 +01:00
parent 68bad6505c
commit e29c2555c3
3 changed files with 23 additions and 10 deletions

View File

@ -8,21 +8,13 @@ environment:
OPENRCT2.ORG_TOKEN:
secure: leQX3xCQpmBLGuMqrxjFlzexDt96ypNRMM5TTRVHbGE8PwVg9crgeykLc2BIZU6HDHveJCHqh2cGMdHtHYJYcw==
install:
- cmd: >-
IF DEFINED ENCKEY ( nuget install secure-file -ExcludeVersion && secure-file\tools\secure-file -decrypt distribution\windows\code-sign-key-openrct2.org.pfx.enc -secret %ENCKEY% )
cinst nsis.portable --version=3.01-beta1 > nul
- ps: >-
curl "http://nsis.sourceforge.net/mediawiki/images/5/53/KillProcDll%26FindProcDll.zip" -OutFile nsisxtra.zip
7z x nsisxtra.zip > $null
cp FindProcDLL.dll "C:\ProgramData\chocolatey\lib\nsis.portable\tools\nsis-3.0b1\Plugins\x86-ansi"
.\scripts\ps\appveyor_install.ps1
build_script:
- ps: >-
.\setenv.ps1
appveyor_run
appveyor_build
artifacts:
- path: .\artifacts\openrct2.zip
name: OpenRCT2-portable

View File

@ -0,0 +1,21 @@
#########################################################
# Script to setup OpenRCT2 for building on AppVeyor
#########################################################
if ($env:ENCKEY)
{
Write-Host "Downloading secure-file from NuGet" -ForegroundColor Cyan
nuget install secure-file -ExcludeVersion
secure-file\tools\secure-file -decrypt distribution\windows\code-sign-key-openrct2.org.pfx.enc -secret $env:ENCKEY
}
if (${env:OPENRCT2.ORG_TOKEN})
{
Write-Host "Downloading NSIS from chocolatey" -ForegroundColor Cyan
cinst nsis.portable --version=3.01-beta1 > $null
Write-Host "Downloading KillProcDLL for NSIS" -ForegroundColor Cyan
curl "http://nsis.sourceforge.net/mediawiki/images/5/53/KillProcDll%26FindProcDll.zip" -OutFile nsisxtra.zip
7z x nsisxtra.zip > $null
cp FindProcDLL.dll "C:\ProgramData\chocolatey\lib\nsis.portable\tools\nsis-3.0b1\Plugins\x86-ansi"
}