File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -7,8 +7,10 @@ asan_task:
77 image : gcc:latest
88 additional_containers :
99 - name : mysql
10- image : mysql:latest
10+ image : mysql:8
1111 port : 3306
12+ cpu : 1.0
13+ memory : 1G
1214 env :
1315 MYSQL_ROOT_PASSWORD : " root"
1416 MYSQL_DATABASE : " test"
@@ -160,10 +162,10 @@ asan_task:
160162 tests_script :
161163 - export SKIP_IO_CAPTURE_TESTS=1
162164 - export CI_NO_IPV6=1
163- - export MYSQL_TEST_HOST=mysql
165+ - export MYSQL_TEST_HOST=127.0.0.1
164166 - export MYSQL_TEST_USER=root
165167 - export MYSQL_TEST_PASSWD=root
166- - export PDO_MYSQL_TEST_DSN="mysql:host=mysql ;dbname=test"
168+ - export PDO_MYSQL_TEST_DSN="mysql:host=127.0.0.1 ;dbname=test"
167169 - export PDO_MYSQL_TEST_USER=root
168170 - export PDO_MYSQL_TEST_PASS=root
169171 - >-
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ pdo_mysql
66<?php
77require_once (__DIR__ . DIRECTORY_SEPARATOR . 'mysql_pdo_test.inc ' );
88MySQLPDOTest::skip ();
9+ if (getenv ('CIRRUS_CI ' )) die ('xfail Broken on Cirrus+ARM ' );
910?>
1011--FILE--
1112<?php
You can’t perform that action at this time.
0 commit comments