diff options
author | Jack Lloyd <[email protected]> | 2019-01-01 14:46:15 -0500 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2019-01-02 11:11:20 -0500 |
commit | 2be47e02033d815ea4811140fda7d9ecb26e1035 (patch) | |
tree | f367ae0ed3de6de443b3a5b75673217115459fc1 /src/scripts/ci | |
parent | d5edb39e968893bafe87a6a5ef12af45914c0d70 (diff) |
Add VC 2019 preview build
Diffstat (limited to 'src/scripts/ci')
-rw-r--r-- | src/scripts/ci/appveyor.yml | 8 | ||||
-rw-r--r-- | src/scripts/ci/setup_appveyor.bat | 1 |
2 files changed, 8 insertions, 1 deletions
diff --git a/src/scripts/ci/appveyor.yml b/src/scripts/ci/appveyor.yml index 66c266ef2..cdd62c3b4 100644 --- a/src/scripts/ci/appveyor.yml +++ b/src/scripts/ci/appveyor.yml @@ -33,12 +33,18 @@ environment: TARGET: static APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 - # MSVC 2017 w/debug iterators + # MSVC 2017 x86-64 w/debug iterators - MSVS: 2017 PLATFORM: x86_amd64 TARGET: sanitizer APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 + # MSVC 2019 static x86-64 + - MSVS: 2019 + PLATFORM: x86_amd64 + TARGET: static + APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019 Preview + install: - call src\scripts\ci\setup_appveyor.bat diff --git a/src/scripts/ci/setup_appveyor.bat b/src/scripts/ci/setup_appveyor.bat index 617774ed1..dccef0ab2 100644 --- a/src/scripts/ci/setup_appveyor.bat +++ b/src/scripts/ci/setup_appveyor.bat @@ -4,6 +4,7 @@ echo Current build setup MSVS="%MSVS%" PLATFORM="%PLATFORM%" TARGET="%TARGET%" if %MSVS% == 2013 call "%ProgramFiles(x86)%\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" %PLATFORM% if %MSVS% == 2015 call "%ProgramFiles(x86)%\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" %PLATFORM% if %MSVS% == 2017 call "%ProgramFiles(x86)%\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvarsall.bat" %PLATFORM% +if %MSVS% == 2019 call "%ProgramFiles(x86)%\Microsoft Visual Studio\2019\Preview\VC\Auxiliary\Build\vcvarsall.bat" %PLATFORM% rem check compiler version cl |