Skip to content

Commit

Permalink
skip PCRE-JIT for s390x
Browse files Browse the repository at this point in the history
PCRE-JIT v8.x is not supported by s390x so skipping the build and install steps for s390x
  • Loading branch information
SohamM-Ibm authored Nov 8, 2024
1 parent a87ab7e commit 79092a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ env:

install:
- cpanm --sudo --notest Test::Nginx IPC::Run3 > build.log 2>&1 || (cat build.log && exit 1)
- if [ "$(uname -m)" != "s390x" ]; then
- 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
Expand Down

0 comments on commit 79092a9

Please sign in to comment.