File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -2,13 +2,13 @@ version: '{build}'
2
2
image : Visual Studio 2017
3
3
environment :
4
4
matrix :
5
+ - DB : MySQL
6
+ CONNECTION_STRING : Server=127.0.0.1;Uid=root;Pwd=Password12!;Database=nhibernate;Old Guids=True;
5
7
- DB : SqlServer2008
6
8
CONNECTION_STRING : Server=(local)\SQL2017;User ID=sa;Password=Password12!;initial catalog=nhibernate;
7
9
- DB : PostgreSQL
8
10
CONNECTION_STRING : Host=localhost;Port=5432;Username=postgres;Password=Password12!;Database=nhibernate;Enlist=true;
9
11
- DB : Firebird
10
- - DB : MySQL
11
- CONNECTION_STRING : Server=127.0.0.1;Uid=root;Pwd=Password12!;Database=nhibernate;Old Guids=True;
12
12
- DB : SQLite
13
13
init :
14
14
# Required for having windows endlines in sources zip
@@ -42,6 +42,7 @@ before_test:
42
42
Start-Service 'MySQL57'
43
43
# Create nhibernate database (not handled by NHibernate.TestDatabaseSetup.dll)
44
44
$env:MYSQL_PWD = 'Password12!'
45
+ & 'C:\Program Files\MySQL\MySQL Server 5.7\bin\mysql' -e "SHOW VARIABLES LIKE 'collation%';" --user=root
45
46
& 'C:\Program Files\MySQL\MySQL Server 5.7\bin\mysql' -e 'CREATE DATABASE nhibernate;' --user=root
46
47
}
47
48
'Odbc' { Start-Service 'MSSQL$SQL2017' }
You can’t perform that action at this time.
0 commit comments