You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .travis.yml
+7-16Lines changed: 7 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ env:
26
26
- LUA_INCLUDE_DIR=$LUAJIT_INC
27
27
- LUA_CMODULE_DIR=/lib
28
28
- JOBS=3
29
-
- PCRE_VER=8.44
29
+
- PCRE_VER=10.46
30
30
- PCRE_PREFIX=/opt/pcre
31
31
- PCRE_LIB=$PCRE_PREFIX/lib
32
32
- PCRE_INC=$PCRE_PREFIX/include
@@ -36,12 +36,12 @@ env:
36
36
- NGX_BUILD_JOBS=$JOBS
37
37
- TEST_NGINX_SLEEP=0.006
38
38
matrix:
39
-
- NGINX_VERSION=1.27.1 OPENSSL_VER=1.1.1u
39
+
- NGINX_VERSION=1.29.2 OPENSSL_VER=3.5.4
40
40
41
41
install:
42
42
- if [ ! -d download-cache ]; then mkdir download-cache; fi
43
-
- 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
44
-
- if [ ! -f download-cache/openssl-$OPENSSL_VER.tar.gz ]; then wget -O download-cache/openssl-$OPENSSL_VER.tar.gz https://www.openssl.org/source/openssl-$OPENSSL_VER.tar.gz; fi
43
+
- if [ -n "$PCRE_VER" ] && [ ! -f download-cache/pcre2-$PCRE_VER.tar.gz ]; then wget -P download-cache https://github.com/PCRE2Project/pcre2/releases/download/pcre2-${PCRE_VER}/pcre2-${PCRE_VER}.tar.gz; fi
44
+
- if [ -n "$OPENSSL_VER" ] && [ ! -f download-cache/openssl-$OPENSSL_VER.tar.gz ]; then wget -P download-cache https://github.com/openssl/openssl/releases/download/openssl-$OPENSSL_VER/openssl-$OPENSSL_VER.tar.gz || 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
0 commit comments