Skip to content

Commit 3a8d29a

Browse files
KentarouTakedanielsdos
authored andcommitted
Refer to container name for connection from x32 test
1 parent 84d567d commit 3a8d29a

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
@@ -148,7 +148,7 @@ jobs:
148148
PDO_MYSQL_TEST_DSN: mysql:host=mysql;dbname=test
149149
PDO_MYSQL_TEST_HOST: mysql
150150
PDO_FIREBIRD_TEST_DATABASE: test.fdb
151-
PDO_FIREBIRD_TEST_DSN: firebird:dbname=localhost:test.fdb
151+
PDO_FIREBIRD_TEST_DSN: firebird:dbname=firebird:test.fdb
152152
PDO_FIREBIRD_TEST_PASS: test
153153
PDO_FIREBIRD_TEST_USER: test
154154
services:

0 commit comments

Comments
 (0)