This repository was archived by the owner on Jun 1, 2023. It is now read-only.
File tree 2 files changed +34
-8
lines changed
2 files changed +34
-8
lines changed Original file line number Diff line number Diff line change 1
1
version : 5.22.2.{build}
2
2
skip_tags : true
3
3
# os: MinGW
4
- os : Visual Studio 2015
4
+ # os: Visual Studio 2015
5
5
# build:
6
6
# verbosity: minimal
7
7
# - x86
8
8
platform :
9
9
- x64
10
+ environment :
11
+ matrix :
12
+ - MSVC_VERSION : 10
13
+ - MSVC_VERSION : 12
10
14
clone_depth : 1
11
15
init :
12
16
- git config --global core.autocrlf input
13
17
18
+ # from https://github.com/apache/lucy-clownfish/blob/master/appveyor.yml
19
+ build : off
20
+
21
+ test_script :
22
+ - ' t\appveyor-smoke.bat'
23
+
14
24
# nope: https://ci.appveyor.com/project/rurban/cperl/build/job/ui7b0dk0gprw1eo2
15
25
# - cinst ruby.devkit
16
26
# - cinst make
@@ -27,13 +37,12 @@ init:
27
37
# the required amd64 line forbids us to use 32bit
28
38
# see https://github.com/osmcode/libosmium/blob/master/appveyor.yml
29
39
# we could try to make both one after the other
30
- build_script :
31
- - cd win32
32
- - call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" amd64
33
- - nmake WIN64=1 CCTYPE=MSVC120
34
- test_script :
35
- - nmake test TEST_JOBS=4
36
-
40
+ # build_script:
41
+ # - cd win32
42
+ # - call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" amd64
43
+ # - nmake WIN64=1 CCTYPE=MSVC120
44
+ # test_script:
45
+ # - nmake test TEST_JOBS=4
37
46
38
47
notifications :
39
48
- provider : Email
Original file line number Diff line number Diff line change
1
+ @ echo off
2
+
3
+ if " %MSVC_VERSION% " == " 10" goto msvc_10
4
+ if " %MSVC_VERSION% " == " 12" goto msvc_12
5
+
6
+ :msvc_12
7
+ call " C:\Program Files (x86)\Microsoft Visual Studio %MSVC_VERSION% .0\VC\vcvarsall.bat" amd64
8
+ cd win32
9
+ nmake CCTYPE=MSVC120 && nmake test TEST_JOBS=4 || exit /b
10
+ exit /b
11
+
12
+ :msvc_10
13
+ call " C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x64
14
+ cd win32
15
+ nmake CCTYPE=MSVC100 && nmake test TEST_JOBS=4 || exit /b
16
+ exit /b
17
+
You can’t perform that action at this time.
0 commit comments