Skip to content

Commit

Permalink
chore(ci): update openssl link (#118)
Browse files Browse the repository at this point in the history
  • Loading branch information
fffonion authored Jul 24, 2024
1 parent 82891cd commit 90902bf
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,26 +29,26 @@ jobs:
strategy:
matrix:
include:
- nginx: "1.21.4"
openssl: "1.1.1w"
lua_nginx_module: "v0.10.21"
stream_lua_nginx_module: "v0.0.11"
lua_resty_core: "v0.1.23"
- nginx: "1.25.3"
openssl: "3.2.1"
lua_nginx_module: "v0.10.26"
stream_lua_nginx_module: "v0.0.14"
lua_resty_core: "v0.1.28"
- nginx: "1.21.4"
openssl: "3.0.12"
lua_nginx_module: "v0.10.21"
stream_lua_nginx_module: "v0.0.11"
lua_resty_core: "v0.1.23"
- nginx: "1.21.4"
lua_nginx_module: "v0.10.26"
stream_lua_nginx_module: "v0.0.14"
lua_resty_core: "v0.1.28"
- nginx: "1.25.3"
openssl: "3.1.4"
lua_nginx_module: "v0.10.26"
stream_lua_nginx_module: "v0.0.14"
lua_resty_core: "v0.1.28"
- nginx: "1.21.4"
openssl: "1.1.1w"
lua_nginx_module: "v0.10.21"
stream_lua_nginx_module: "v0.0.11"
lua_resty_core: "v0.1.23"
- nginx: "1.19.9"
openssl: "1.1.1w"
lua_nginx_module: "v0.10.20"
stream_lua_nginx_module: "v0.0.10"
lua_resty_core: "v0.1.22"

env:
JOBS: 3
Expand Down Expand Up @@ -132,7 +132,7 @@ jobs:
- name: Build OpenSSL
run: |
if [ "X$OPENSSL_HASH" != "X" ]; then wget https://github.com/openssl/openssl/archive/$OPENSSL_HASH.tar.gz -O - | tar zxf ; pushd openssl-$OPENSSL_HASH/; fi
if [ "X$OPENSSL_HASH" = "X" ] ; then wget https://www.openssl.org/source/openssl-${{ matrix.openssl }}.tar.gz -O - | tar zxf -; pushd openssl-${{ matrix.openssl }}/; fi
if [ "X$OPENSSL_HASH" = "X" ] ; then (wget https://github.com/openssl/openssl/releases/download/openssl-${{ matrix.openssl }}/openssl-${{ matrix.openssl }}.tar.gz -qO - || wget https://openssl.org/source/old/1.1.1/openssl-${{ matrix.openssl}}.tar.gz -qO -)| tar zxf -; pushd openssl-${{ matrix.openssl }}/; fi
if [ ! -e $OPENSSL_PREFIX/include ]; then ./config shared -d --prefix=$OPENSSL_PREFIX -DPURIFY > build.log 2>&1 || (cat build.log && exit 1); fi
if [ ! -e $OPENSSL_PREFIX/include ]; then make -j$JOBS > build.log 2>&1 || (cat build.log && exit 1); fi
if [ ! -e $OPENSSL_PREFIX/include ]; then sudo make PATH=$PATH install_sw > build.log 2>&1 || (cat build.log && exit 1); fi
Expand Down

0 comments on commit 90902bf

Please sign in to comment.