summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Maidanski <ivmai@mail.ru>2021-10-30 13:12:37 +0300
committerIvan Maidanski <ivmai@mail.ru>2021-11-15 21:35:02 +0300
commit9dafc62766d78e0a143c592f1e874fe6a3e87b12 (patch)
treeb4c1b12348b87794b7de0234b77a7ae57ca23fc2
parent9dbb025fb6be07bc38734f07a40b6c3e39fec2db (diff)
downloadlibatomic_ops-9dafc62766d78e0a143c592f1e874fe6a3e87b12.tar.gz
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.
-rw-r--r--.appveyor.yml19
1 files 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 ..