-
Notifications
You must be signed in to change notification settings - Fork 12
/
appveyor.yml
67 lines (47 loc) · 1.5 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
skip_commits:
# Mimic Travis-ci skip behavior.
message: /ci skip/
environment:
# As defined by Appveyor.
SA_PASSWORD: "Password12!"
BUILD_INSTALL_PREFIX: "C:\\usr\\local"
FREETDS_VERSION: "1.1.20"
matrix:
- PYTHON: "C:\\Python27-x64"
SQLSERVER_INSTANCENAME: "SQL2016"
- PYTHON: "C:\\Python33-x64"
SQLSERVER_INSTANCENAME: "SQL2016"
DISTUTILS_USE_SDK: "1"
- PYTHON: "C:\\Python34-x64"
SQLSERVER_INSTANCENAME: "SQL2016"
DISTUTILS_USE_SDK: "1"
- PYTHON: "C:\\Python35-x64"
SQLSERVER_INSTANCENAME: "SQL2016"
- PYTHON: "C:\\Python36-x64"
SQLSERVER_INSTANCENAME: "SQL2008R2SP2"
- PYTHON: "C:\\Python36-x64"
SQLSERVER_INSTANCENAME: "SQL2012SP1"
- PYTHON: "C:\\Python36-x64"
SQLSERVER_INSTANCENAME: "SQL2014"
- PYTHON: "C:\\Python36-x64"
SQLSERVER_INSTANCENAME: "SQL2016"
- PYTHON: "C:\\Python37-x64"
SQLSERVER_INSTANCENAME: "SQL2016"
# Note: Database services should *not* be specified in the services section.
# The database service will be explicitly started by the script which enables
# TCP/IP connections for the database.
services:
cache:
- '%BUILD_INSTALL_PREFIX% -> appveyor\\install.ps1'
- '%BUILD_INSTALL_PREFIX% -> appveyor.yml'
install:
- choco install opencppcoverage
- "powershell appveyor\\install.ps1"
build_script:
- "powershell appveyor\\build_script.ps1"
before_test:
- "powershell appveyor\\before_test.ps1"
test_script:
- "powershell appveyor\\test_script.ps1"
after_test:
- "powershell appveyor\\after_test.ps1"