1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-02-03 04:05:49 +01:00

Use VS2017RC beta image on appveyor

This commit is contained in:
Michał Janiszewski
2016-12-16 18:11:26 +01:00
committed by Ted John
parent 86b209ed90
commit dde9fd86f2
2 changed files with 6 additions and 2 deletions

View File

@@ -1,5 +1,7 @@
version: 0.0.5.{build}
os: Previous Visual Studio 2015
image:
- Visual Studio 2015
- Visual Studio 2017 RC
cache:
- C:\ProgramData\chocolatey\bin -> scripts\ps\appveyor_install.ps1
- C:\ProgramData\chocolatey\lib -> scripts\ps\appveyor_install.ps1

View File

@@ -3,7 +3,9 @@
###########################################
$testing = (${env:Configuration} -like "*tests")
if (-not $testing)
# Only deploy from VS2015 for now.
$vs2015 = (${env:APPVEYOR_JOB_NAME} -like "*2015*")
if (-not $testing -and $vs2015)
{
# Check if OpenRCT2.org API security token is available
if (${env:OPENRCT2_ORG_TOKEN})