From a0c705f0843fdd71c6464d3158e7598a5a268c0c Mon Sep 17 00:00:00 2001 From: SohamM-Ibm <119834001+SohamM-Ibm@users.noreply.github.com> Date: Thu, 9 Jan 2025 15:23:58 +0530 Subject: [PATCH] test: Added patch for s390x builds. PCRE's JIT does not support s390x for the 8.x series. So skipping the PCRE installation steps only for s390x. --- .travis.yml | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index 86c1e2d..1b33d16 100644 --- a/.travis.yml +++ b/.travis.yml @@ -51,14 +51,17 @@ env: install: - cpanm --sudo --notest Test::Nginx IPC::Run3 > build.log 2>&1 || (cat build.log && exit 1) - - if [ ! -f download-cache/pcre-$PCRE_VER.tar.gz ]; then wget -P download-cache https://downloads.sourceforge.net/project/pcre/pcre/${PCRE_VER}/pcre-${PCRE_VER}.tar.gz; fi + - | + if [ "$TRAVIS_CPU_ARCH" != "s390x" ]; then + if [ ! -f download-cache/pcre-$PCRE_VER.tar.gz ]; then wget -P download-cache https://downloads.sourceforge.net/project/pcre/pcre/${PCRE_VER}/pcre-${PCRE_VER}.tar.gz; fi + tar zxf download-cache/pcre-$PCRE_VER.tar.gz + cd pcre-$PCRE_VER/ + ./configure --prefix=$PCRE_PREFIX --enable-jit --enable-utf --enable-unicode-properties > build.log 2>&1 || (cat build.log && exit 1) + make -j$JOBS > build.log 2>&1 || (cat build.log && exit 1) + sudo PATH=$PATH make install > build.log 2>&1 || (cat build.log && exit 1) + cd .. + fi - if [ ! -f download-cache/openssl-$OPENSSL_VER.tar.gz ]; then wget -P download-cache https://www.openssl.org/source/openssl-$OPENSSL_VER.tar.gz || wget -P download-cache https://www.openssl.org/source/old/${OPENSSL_VER//[a-z]/}/openssl-$OPENSSL_VER.tar.gz; fi - - tar zxf download-cache/pcre-$PCRE_VER.tar.gz - - cd pcre-$PCRE_VER/ - - ./configure --prefix=$PCRE_PREFIX --enable-jit --enable-utf --enable-unicode-properties > build.log 2>&1 || (cat build.log && exit 1) - - make -j$JOBS > build.log 2>&1 || (cat build.log && exit 1) - - sudo PATH=$PATH make install > build.log 2>&1 || (cat build.log && exit 1) - - cd .. - tar zxf download-cache/openssl-$OPENSSL_VER.tar.gz - cd openssl-$OPENSSL_VER/ - patch -p1 < ../patches/openssl-$OPENSSL_PATCH_VER-sess_set_get_cb_yield.patch