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 10:00:48 +0300
commitaff0cbd4251a99d67726ab509bac3663fddad334 (patch)
treead0584a327e50c83b9f2c45bd70d167f579c5388
parente61367184d863ac6a2b39af30bbc682fabf0c138 (diff)
downloadlibatomic_ops-aff0cbd4251a99d67726ab509bac3663fddad334.tar.gz
AppVeyor CI: Specify VS 2015 image explicitly
(a cherry-pick of commit 2e9d20292 from 'master') 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 9f96f65..5564136 100644
--- a/.appveyor.yml
+++ b/.appveyor.yml
@@ -1,23 +1,24 @@
version: 7.4.x-{build}
-clone_depth: 50
+image:
+- Visual Studio 2015
environment:
- MS_SDK_VER: v7.1
+ BLD: debug
matrix:
- - CPU: x86
- BLD: debug
+ - ARCH: x86
CFLAGS_EXTRA: -DAO_ASSUME_VISTA -DAO_USE_PENTIUM4_INSTRS
- - CPU: x86
+ - ARCH: x86
BLD: release
- - CPU: x64
- BLD: debug
+ - ARCH: x64
CFLAGS_EXTRA: -DAO_CMPXCHG16B_AVAILABLE
- - CPU: 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 CFLAGS_EXTRA="%CFLAGS_EXTRA%" && cd ..