Skip to content

Commit 7d3d2f9

Browse files
KentarouTakedanielsdos
authored andcommitted
Refer to container name for connection from x32 test
1 parent 6b880d7 commit 7d3d2f9

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/actions/test-linux/action.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@ runs:
3030
export PDO_PGSQL_TEST_DSN="pgsql:host=localhost port=5432 dbname=test user=postgres password=postgres"
3131
fi
3232
export PDO_FIREBIRD_TEST_DATABASE=test.fdb
33-
export PDO_FIREBIRD_TEST_DSN=firebird:dbname=localhost:test.fdb
33+
if [[ -z "$PDO_FIREBIRD_TEST_DSN" ]]; then
34+
export PDO_FIREBIRD_TEST_DSN=firebird:dbname=localhost:test.fdb
35+
fi
3436
export PDO_FIREBIRD_TEST_PASS=test
3537
export PDO_FIREBIRD_TEST_USER=test
3638
export ODBC_TEST_USER="odbc_test"

.github/workflows/push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ jobs:
147147
PDO_MYSQL_TEST_DSN: mysql:host=mysql;dbname=test
148148
PDO_MYSQL_TEST_HOST: mysql
149149
PDO_FIREBIRD_TEST_DATABASE: test.fdb
150-
PDO_FIREBIRD_TEST_DSN: firebird:dbname=localhost:test.fdb
150+
PDO_FIREBIRD_TEST_DSN: firebird:dbname=firebird:test.fdb
151151
PDO_FIREBIRD_TEST_PASS: test
152152
PDO_FIREBIRD_TEST_USER: test
153153
services:

0 commit comments

Comments
 (0)