10000 Merge pull request #48 from fancycode/appveyor-vc9 · fancycode/MemoryModule@8988355 · GitHub
[go: up one dir, main page]

Skip to content

Commit 8988355

Browse files
authored
Merge pull request #48 from fancycode/appveyor-vc9
Also run CI against Visual Studio 2008.
2 parents 1d19f9f + b26476f commit 8988355

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

appveyor.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ os:
77

88
environment:
99
matrix:
10+
- GENERATOR: "Visual Studio 9 2008"
11+
UNICODE: ON
12+
- GENERATOR: "Visual Studio 9 2008"
13+
UNICODE: OFF
1014
- GENERATOR: "Visual Studio 10 2010"
1115
UNICODE: ON
1216
- GENERATOR: "Visual Studio 10 2010"

scripts/run-appveyor.bat

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ setlocal
33

44
if /I "%PLATFORM%" == "x64" (
55
set CMAKE_GEN_SUFFIX= Win64
6+
if /I "%GENERATOR%" == "Visual Studio 9 2008" (
7+
echo Skipping %CONFIGURATION% build using %GENERATOR%%CMAKE_GEN_SUFFIX% on %PLATFORM%
8+
exit 0
9+
)
610
) else (
711
set CMAKE_GEN_SUFFIX=
812
)

0 commit comments

Comments
 (0)
0