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:
7
7
image : gcc:latest
8
8
additional_containers :
9
9
- name : mysql
10
- image : mysql:latest
10
+ image : mysql:8
11
11
port : 3306
12
+ cpu : 1.0
13
+ memory : 1G
12
14
env :
13
15
MYSQL_ROOT_PASSWORD : " root"
14
16
MYSQL_DATABASE : " test"
@@ -160,10 +162,10 @@ asan_task:
160
162
tests_script :
161
163
- export SKIP_IO_CAPTURE_TESTS=1
162
164
- export CI_NO_IPV6=1
163
- - export MYSQL_TEST_HOST=mysql
165
+ - export MYSQL_TEST_HOST=127.0.0.1
164
166
- export MYSQL_TEST_USER=root
165
167
- 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"
167
169
- export PDO_MYSQL_TEST_USER=root
168
170
- export PDO_MYSQL_TEST_PASS=root
169
171
- >-
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ pdo_mysql
6
6
<?php
7
7
require_once (__DIR__ . DIRECTORY_SEPARATOR . 'mysql_pdo_test.inc ' );
8
8
MySQLPDOTest::skip ();
9
+ if (getenv ('CIRRUS_CI ' )) die ('xfail Broken on Cirrus+ARM ' );
9
10
?>
10
11
--FILE--
11
12
<?php
You can’t perform that action at this time.
0 commit comments