File tree Expand file tree Collapse file tree 4 files changed +36
-14
lines changed Expand file tree Collapse file tree 4 files changed +36
-14
lines changed Original file line number Diff line number Diff line change @@ -10,18 +10,29 @@ addons:
10
10
- locales
11
11
- language-pack-de
12
12
- re2c
13
+ - ccache
14
+ - mysql-server
15
+ - libaspell-dev
16
+ - libbz2-dev
17
+ - libcurl4-gnutls-dev
18
+ - libenchant-dev
19
+ - libfreetype6-dev
13
20
- libgmp-dev
14
21
- libicu-dev
15
- - libtidy-dev
16
- - libenchant-dev
17
- - libaspell-dev
22
+ - libjpeg-dev
23
+ - libkrb5-dev
24
+ - libonig-dev
25
+ - libpng-dev
26
+ - libpq-dev
18
27
- libpspell-dev
19
28
- libsasl2-dev
20
- - libxpm-dev
21
- - libzip-dev
22
29
- libsqlite3-dev
30
+ - libtidy-dev
23
31
- libwebp-dev
24
- - libonig-dev
32
+ - libxml2-dev
33
+ - libxpm-dev
34
+ - libxslt1-dev
35
+ - libzip-dev
25
36
26
37
27
38
services :
53
64
- PDO_MYSQL_TEST_HOST=127.0.0.1
54
65
- PDO_PGSQL_TEST_DSN="pgsql:host=localhost port=5432 dbname=test user=postgres password="
55
66
- REPORT_EXIT_STATUS=1
56
- matrix :
57
- - ENABLE_ZTS=0 ENABLE_DEBUG=0
58
- - ENABLE_ZTS=1 ENABLE_DEBUG=1
67
+
68
+ jobs :
69
+ include :
70
+ - env : ENABLE_ZTS=0 ENABLE_DEBUG=0
71
+ arch : amd64
72
+ - env : ENABLE_ZTS=1 ENABLE_DEBUG=1
73
+ arch : amd64
74
+ - env : ENABLE_ZTS=1 ENABLE_DEBUG=1 SKIP_IO_CAPTURE_TESTS=1 ARM64=1
75
+ arch : arm64
59
76
60
77
before_script :
61
78
- ccache --version
Original file line number Diff line number Diff line change 77
77
--with-ffi \
78
78
--enable-zend-test=shared \
79
79
--enable-werror \
80
- --with-pear \
81
- > " $CONFIG_LOG_FILE "
80
+ --with-pear
82
81
83
- make " -j${MAKE_JOBS} " $MAKE_QUIET > " $MAKE_LOG_FILE "
84
- make install >> " $MAKE_LOG_FILE "
82
+ make " -j${MAKE_JOBS} " $MAKE_QUIET
83
+ make install
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
+ if [ -n " $ARM64 " ]; then
3
+ sudo mysql -e ' CREATE USER "travis"@"localhost" IDENTIFIED BY ""'
4
+ sudo mysql -e ' GRANT ALL PRIVILEGES ON *.* TO "travis"@"localhost"'
5
+ fi
2
6
mysql -e " CREATE DATABASE IF NOT EXISTS test"
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
echo '
3
3
<?php $conn_str .= " user=postgres"; ?>' >> " ./ext/pgsql/tests/config.inc"
4
- psql -c ' create database test;' -U postgres
4
+ if [ -z " $ARM64 " ]; then
5
+ psql -c ' create database test;' -U postgres
6
+ fi
You can’t perform that action at this time.
0 commit comments