Skip to content

Commit 79a50fa

Browse files
committed
Add AppVeyor build
1 parent 9bc2490 commit 79a50fa

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

appveyor.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
version: 5.1.0.{build}
2+
image: Visual Studio 2017
3+
environment:
4+
matrix:
5+
- DB: SqlServer2008
6+
CONNECTION_STRING: Server=(local)\SQL2017;User ID=sa;Password=Password12!;initial catalog=nhibernate;
7+
- DB: PostgreSQL
8+
CONNECTION_STRING: Host=localhost;Port=5432;Username=postgres;Password=Password12!;Database=nhibernate;Enlist=true;
9+
services:
10+
- mssql2017
11+
- postgresql
12+
build: off
13+
test_script:
14+
- cmd: powershell -noprofile -command "& ./build.ps1 -TaskList Set-Configuration,Test -properties @{\"Database\" = \"%DB%\";\"ConnectionString\"=\"%CONNECTION_STRING%\"}"
15+
deploy: off

0 commit comments

Comments
 (0)