File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -44,6 +44,12 @@ arm_task:
44
44
env :
45
45
POSTGRES_PASSWORD : " postgres"
46
46
POSTGRES_DB : " test"
47
+ - name : mssql
48
+ image : mcr.microsoft.com/mssql/server:2019-latest
49
+ env :
50
+ SA_PASSWORD : mssql
51
+ ACCEPT_EULA : ' Y'
52
+ port : 1433
47
53
install_script :
48
54
- export DEBIAN_FRONTEND=noninteractive
49
55
- apt-get update -y
@@ -192,6 +198,9 @@ arm_task:
192
198
- export PDO_MYSQL_TEST_USER=root
193
199
- export PDO_MYSQL_TEST_PASS=root
194
200
- export PDO_PGSQL_TEST_DSN="pgsql:host=postgres port=5432 dbname=test user=postgres password=postgres"
201
+ - export PDO_DBLIB_TEST_DSN="dblib:host=mssql;dbname=master;version=7.0"
202
+ - export PDO_DBLIB_TEST_USER="sa"
203
+ - export PDO_DBLIB_TEST_PASS="mssql"
195
204
- >-
196
205
sapi/cli/php run-tests.php
197
206
-d zend_extension=opcache.so
You can’t perform that action at this time.
0 commit comments