-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappveyor.yml
More file actions
43 lines (34 loc) · 925 Bytes
/
appveyor.yml
File metadata and controls
43 lines (34 loc) · 925 Bytes
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
branches:
only:
- master
- /^ci.*$/
platform:
- x86
configuration:
- Release
environment:
matrix:
- PY_VERSION: 3.5.1
GENERATOR: Visual Studio 12 2013
- PY_VERSION: 3.5.1
GENERATOR: Visual Studio 12 2013 Win64
- 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