@@ -2,17 +2,17 @@ version: '{build}'
2
2
image : Visual Studio 2022
3
3
environment :
4
4
matrix :
5
- - DB : SqlServer2008
6
- CONNECTION_STRING : Server=(local)\SQL2017;User ID=sa;Password=Password12!;initial catalog=nhibernate;
7
- - DB : SqlServer2008-MicrosoftDataSqlClientDriver
8
- CONNECTION_STRING : Server=(local)\SQL2017;User ID=sa;Password=Password12!;initial catalog=nhibernate;
5
+ # - DB: SqlServer2008
6
+ # CONNECTION_STRING: Server=(local)\SQL2017;User ID=sa;Password=Password12!;initial catalog=nhibernate;
7
+ # - DB: SqlServer2008-MicrosoftDataSqlClientDriver
8
+ # CONNECTION_STRING: Server=(local)\SQL2017;User ID=sa;Password=Password12!;initial catalog=nhibernate;
9
9
- DB : PostgreSQL
10
10
CONNECTION_STRING : Host=localhost;Port=5432;Username=postgres;Password=Password12!;Database=nhibernate;Enlist=true;
11
- - DB : Firebird
12
- - DB : Firebird4
13
- - DB : MySQL
14
- CONNECTION_STRING : Server=127.0.0.1;Uid=root;Pwd=Password12!;Database=nhibernate;Old Guids=True;SslMode=none;CharSet=utf8;
15
- - DB : SQLite
11
+ # - DB: Firebird
12
+ # - DB: Firebird4
13
+ # - DB: MySQL
14
+ # CONNECTION_STRING: Server=127.0.0.1;Uid=root;Pwd=Password12!;Database=nhibernate;Old Guids=True;SslMode=none;CharSet=utf8;
15
+ # - DB: SQLite
16
16
init :
17
17
# Required for having windows endlines in sources zip
18
18
- git config --global core.autocrlf true
@@ -71,8 +71,8 @@ before_test:
71
71
'Odbc' { Start-Service 'MSSQL$SQL2017' }
72
72
'PostgreSQL' {
73
73
# Enable prepared transactions
74
- Add-Content -Path 'C:\Program Files\PostgreSQL\10 \data\postgresql.conf' -Value "`r`nmax_prepared_transactions = 100"
75
- Start-Service 'postgresql-x64-10 '
74
+ Add-Content -Path 'C:\Program Files\PostgreSQL\13 \data\postgresql.conf' -Value "`r`nmax_prepared_transactions = 100"
75
+ Start-Service 'postgresql-x64-13 '
76
76
}
77
77
'SqlServer2008' { Start-Service 'MSSQL$SQL2017' }
78
78
'SqlServer2008-MicrosoftDataSqlClientDriver' { Start-Service 'MSSQL$SQL2017' }
0 commit comments