Skip to content

Commit 368d79f

Browse files
Activate testing on 32bits windows with msvc
1 parent f28c937 commit 368d79f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.appveyor.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ build: false
33
os: Visual Studio 2015
44

55
platform:
6+
- x86
67
- x64
78

89
environment:
@@ -40,7 +41,8 @@ install:
4041
- conda update -q conda
4142
- conda info -a
4243
- conda install cmake xtl -c conda-forge
43-
- cmake -G "NMake Makefiles" -D DOWNLOAD_GTEST=1 -D ENABLE_XTL_COMPLEX=1 -D CMAKE_INSTALL_PREFIX=%MINICONDA%\\LIBRARY -D CMAKE_BUILD_TYPE=Release .
44+
- ps: if($env:Platform -eq "x64"){$env:EnableXTL=1} else {$env:EnableXTL=0}
45+
- cmake -G "NMake Makefiles" -D DOWNLOAD_GTEST=1 -D ENABLE_XTL_COMPLEX=%EnableXTL% -D CMAKE_INSTALL_PREFIX=%MINICONDA%\\LIBRARY -D CMAKE_BUILD_TYPE=Release .
4446
- nmake test_xsimd
4547
- cd test
4648

0 commit comments

Comments
 (0)