File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 12
12
CONNECTION_STRING : " Server=localhost;initial catalog=nhibernate;User Id=sa;Password=P@ssw0rd;packet size=4096;"
13
13
- DB : PostgreSQL
14
14
CONNECTION_STRING : " Host=localhost;Port=5432;Username=nhibernate;Password=nhibernate;Database=nhibernate;Enlist=true;"
15
- - DB : Firebird
15
+ - DB : Firebird
16
16
CONNECTION_STRING : " DataSource=localhost;Database=nhibernate;User=SYSDBA;Password=nhibernate;charset=utf8;"
17
17
- DB : MySQL
18
18
CONNECTION_STRING : " Server=localhost;Uid=root;Password=nhibernate;Database=nhibernate;Old Guids=True;"
@@ -32,19 +32,19 @@ jobs:
32
32
- name : Set up MySQL
33
33
if : matrix.DB == 'MySQL'
34
34
run : |
35
- sudo service mysql stop
35
+ sudo service mysql stop
36
36
docker run --name mysql -e MYSQL_ROOT_PASSWORD=nhibernate -e MYSQL_USER=nhibernate -e MYSQL_PASSWORD=nhibernate -e MYSQL_DATABASE=nhibernate -p 3306:3306 --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 -d mysql:5.7 mysqld --lower_case_table_names=1
37
37
38
38
- name : Set up PostgreSQL
39
39
if : matrix.DB == 'PostgreSQL'
40
40
run : |
41
41
docker run -d -e POSTGRES_USER=nhibernate -e POSTGRES_PASSWORD=nhibernate -e POSTGRES_DB=nhibernate -p 5432:5432 postgres
42
-
42
+
43
43
- name : Set up Firebird
44
44
if : matrix.DB == 'Firebird'
45
45
run : |
46
46
docker run --name firebird -e EnableWireCrypt=true -e FIREBIRD_USER=nhibernate -e FIREBIRD_PASSWORD=nhibernate -e ISC_PASSWORD=nhibernate -e FIREBIRD_DATABASE=nhibernate -p 3050:3050 -d jacobalberty/firebird
47
-
47
+
48
48
- uses : actions/checkout@v2
49
49
- name : Setup .NET
50
50
You can’t perform that action at this time.
0 commit comments