From 9dafc62766d78e0a143c592f1e874fe6a3e87b12 Mon Sep 17 00:00:00 2001 From: Ivan Maidanski Date: Sat, 30 Oct 2021 13:12:37 +0300 Subject: AppVeyor CI: Specify VS 2015 image explicitly (a cherry-pick of commit aff0cbd42 from 'release-7_4') Also, rename CPU variable to ARCH. Delete MS_SDK_VER variable. --- .appveyor.yml | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index ae3293d..7536b58 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -1,21 +1,22 @@ version: 7.2.x-{build} -clone_depth: 50 +image: +- Visual Studio 2015 environment: - MS_SDK_VER: v7.1 + BLD: debug matrix: - - CPU: x86 - BLD: debug - - CPU: x86 + - ARCH: x86 + - ARCH: x86 BLD: release - - CPU: x64 - BLD: debug - - CPU: x64 + - ARCH: x64 + - ARCH: x64 BLD: release +clone_depth: 50 + install: - - cmd: '"C:\Program Files\Microsoft SDKs\Windows\%MS_SDK_VER%\Bin\SetEnv.cmd" /%CPU% /%BLD%' +- cmd: '"C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /%ARCH% /%BLD%' build_script: - cmd: cd src && nmake -f Makefile.msft clean all && cd .. -- cgit v1.2.1