File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change 74
74
arch : amd64
75
75
- env : ENABLE_ZTS=1 ENABLE_DEBUG=1 SKIP_IO_CAPTURE_TESTS=1 ARM64=1
76
76
arch : arm64
77
+ - env : ENABLE_ZTS=1 ENABLE_DEBUG=1 SKIP_IO_CAPTURE_TESTS=1 BIG_ENDIAN=1
78
+ arch : s390x
77
79
78
80
before_script :
79
81
- ccache --version
Original file line number Diff line number Diff line change @@ -9,6 +9,11 @@ if [[ "$ENABLE_DEBUG" == 1 ]]; then
9
9
else
10
10
DEBUG=" " ;
11
11
fi
12
+ if [[ " $BIG_ENDIAN " == 1 ]]; then
13
+ BIG_ENDIAN_CONFIG=" --without-pcre-jit" ;
14
+ else
15
+ BIG_ENDIAN_CONFIG=" " ;
16
+ fi
12
17
13
18
if [[ -z " $CONFIG_LOG_FILE " ]]; then
14
19
CONFIG_QUIET=" --quiet"
@@ -32,6 +37,7 @@ MAKE_JOBS=${MAKE_JOBS:-$(nproc)}
32
37
$CONFIG_QUIET \
33
38
$DEBUG \
34
39
$TS \
40
+ $BIG_ENDIAN_CONFIG \
35
41
--enable-phpdbg \
36
42
--enable-fpm \
37
43
--with-pdo-mysql=mysqlnd \
You can’t perform that action at this time.
0 commit comments