-
Notifications
You must be signed in to change notification settings - Fork 1
/
appveyor.yml
67 lines (53 loc) · 1.56 KB
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
image: Visual Studio 2015
branches:
only:
- master
- /^ci.*$/
platform:
- x86
configuration:
- Release
# Default GENERATOR is set to "Visual Studio 9 2008"
# See https://github.com/python-cmake-buildsystem/python-cmake-buildsystem/blob/dashboard/appveyor_dashboard.cmake
environment:
matrix:
- PY_VERSION: 3.6.5
GENERATOR: Visual Studio 14 2015 Win64
- PY_VERSION: 3.6.5
GENERATOR: Visual Studio 14 2015
- PY_VERSION: 3.5.5
GENERATOR: Visual Studio 14 2015 Win64
- PY_VERSION: 3.5.5
GENERATOR: Visual Studio 14 2015
- PY_VERSION: 2.7.14
GENERATOR: Visual Studio 14 2015 Win64
- PY_VERSION: 2.7.14
GENERATOR: Visual Studio 14 2015
- PY_VERSION: 2.7.14
GENERATOR: Visual Studio 12 2013 Win64
- PY_VERSION: 2.7.14
GENERATOR: Visual Studio 12 2013
- PY_VERSION: 2.7.15
- PY_VERSION: 2.7.14
- PY_VERSION: 2.7.13
- PY_VERSION: 2.7.12
- PY_VERSION: 2.7.11
- PY_VERSION: 2.7.10
- PY_VERSION: 2.7.9
- PY_VERSION: 2.7.8
- PY_VERSION: 2.7.7
- PY_VERSION: 2.7.6
- PY_VERSION: 2.7.5
- PY_VERSION: 2.7.4
- PY_VERSION: 2.7.3
install:
- ps: |
$scripts_dir="$env:APPVEYOR_BUILD_FOLDER\scripts"
mkdir $scripts_dir
$source="https://raw.githubusercontent.com/davidsansome/python-cmake-buildsystem/dashboard/appveyor_dashboard.cmake"
$destination="$scripts_dir\appveyor_dashboard.cmake"
(New-Object Net.WebClient).DownloadFile($source, $destination)
build_script:
- ctest -V -C %configuration% -S "%APPVEYOR_BUILD_FOLDER%\\scripts\\appveyor_dashboard.cmake"
test: off
deploy: off