forked from patriksimek/connect-mssql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappveyor.yml
More file actions
31 lines (25 loc) · 738 Bytes
/
appveyor.yml
File metadata and controls
31 lines (25 loc) · 738 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
version: "{build}"
environment:
matrix:
- nodejs_version: "0.10"
- nodejs_version: "0.12"
- nodejs_version: "4"
install:
- ps: Install-Product node $env:nodejs_version
- npm install
build: off
before_test:
- sc config sqlbrowser start= auto
- net start sqlbrowser
test_script:
- node --version
- npm --version
- cmd: |
SET EXITVAL=0
powershell %cd%\test\scripts\appveyor.ps1 SQL2008R2SP2
npm run-script test-integration || SET EXITVAL=1
powershell %cd%\test\scripts\appveyor.ps1 SQL2012SP1
npm run-script test-integration || SET EXITVAL=1
powershell %cd%\test\scripts\appveyor.ps1 SQL2014
npm run-script test-integration || SET EXITVAL=1
EXIT /B %EXITVAL%