File tree Expand file tree Collapse file tree 1 file changed +21
-10
lines changed Expand file tree Collapse file tree 1 file changed +21
-10
lines changed Original file line number Diff line number Diff line change 7
7
strategy :
8
8
fail-fast : false
9
9
matrix :
10
+ i : [1,2,3,4,5]
10
11
include :
11
- - DB : SqlServer2008
12
- CONNECTION_STRING : " Server=localhost;initial catalog=nhibernate;User Id=sa;Password=P@ssw0rd;packet size=4096;"
13
- - DB : PostgreSQL
14
- CONNECTION_STRING : " Host=localhost;Username=nhibernate;Password=nhibernate;Database=nhibernate;Enlist=true;"
15
- - DB : Firebird
12
+
13
+ - i : 1
14
+ DB : Firebird
15
+ CONNECTION_STRING : " DataSource=localhost;Database=nhibernate;User=SYSDBA;Password=nhibernate;charset=utf8;"
16
+
17
+ - i : 2
18
+ DB : Firebird
19
+ CONNECTION_STRING : " DataSource=localhost;Database=nhibernate;User=SYSDBA;Password=nhibernate;charset=utf8;"
20
+
21
+ - i : 3
22
+ DB : Firebird
23
+ CONNECTION_STRING : " DataSource=localhost;Database=nhibernate;User=SYSDBA;Password=nhibernate;charset=utf8;"
24
+
25
+ - i : 4
26
+ DB : Firebird
27
+ CONNECTION_STRING : " DataSource=localhost;Database=nhibernate;User=SYSDBA;Password=nhibernate;charset=utf8;"
28
+
29
+ - i : 5
30
+ DB : Firebird
16
31
CONNECTION_STRING : " DataSource=localhost;Database=nhibernate;User=SYSDBA;Password=nhibernate;charset=utf8;"
17
- - DB : MySQL
18
- CONNECTION_STRING : " Server=localhost;Uid=root;Password=nhibernate;Database=nhibernate;Old Guids=True;"
19
- ALLOW_FAILURE : true
20
- - DB : SQLite
21
32
runs-on : ubuntu-latest
22
33
continue-on-error : ${{matrix.ALLOW_FAILURE == true}}
23
34
env :
24
35
LANG : en-US.UTF-8 # default POSIX locale doesn't support ignore case comparisons
25
- name : ${{matrix.DB}}
36
+ name : ${{matrix.DB}} + ${{matrix.i}}
26
37
27
38
steps :
28
39
- name : Set up SqlServer
You can’t perform that action at this time.
0 commit comments