Skip to content

Commit

Permalink
Build modules for NGINX 1.25.1 (#453)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucacome committed Jun 21, 2023
1 parent c281f9e commit b559ad6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile-test
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM ubuntu:23.10

ARG OPENTRACING_CPP_VERSION=v1.6.0
ARG NGINX_VERSION=1.25.0
ARG NGINX_VERSION=1.25.1

RUN set -x \
&& apt-get update \
Expand Down
4 changes: 2 additions & 2 deletions ci/build_module_binaries.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set -e
[ -z "${OPENTRACING_VERSION}" ] && export OPENTRACING_VERSION="v1.6.0"
NAME_SUFFIX=${NAME_SUFFIX:-""}

NGINX_VERSIONS=(1.25.0 1.24.0 1.23.4 1.23.3 1.23.2 1.23.1 1.23.0 1.22.1 1.22.0 1.21.6 1.21.5 1.21.4 1.21.3 1.21.2 1.21.1 1.21.0 1.20.2 1.20.1 1.20.0 1.19.10 1.19.9 1.19.8 1.19.7 1.19.6 1.19.5 1.19.4 1.19.3 1.19.2 1.18.0 1.17.8 1.17.3 1.17.2 1.17.1 1.17.0 1.16.1 1.16.0 1.15.8 1.15.1 1.15.0 1.14.2 1.13.6)
NGINX_VERSIONS=(1.25.1 1.25.0 1.24.0 1.23.4 1.23.3 1.23.2 1.23.1 1.23.0 1.22.1 1.22.0 1.21.6 1.21.5 1.21.4 1.21.3 1.21.2 1.21.1 1.21.0 1.20.2 1.20.1 1.20.0 1.19.10 1.19.9 1.19.8 1.19.7 1.19.6 1.19.5 1.19.4 1.19.3 1.19.2 1.18.0 1.17.8 1.17.3 1.17.2 1.17.1 1.17.0 1.16.1 1.16.0 1.15.8 1.15.1 1.15.0 1.14.2 1.13.6)

# Compile for a portable cpu architecture
export CFLAGS="-march=x86-64 -fPIC"
Expand All @@ -15,5 +15,5 @@ export LDFLAGS="-fPIC"
./ci/build_static_opentracing.sh

for NGINX_VERSION in ${NGINX_VERSIONS[*]}; do
./ci/build_module_binary.sh "${NGINX_VERSION}" "${NAME_SUFFIX}"
./ci/build_module_binary.sh "${NGINX_VERSION}" "${NAME_SUFFIX}"
done

0 comments on commit b559ad6

Please sign in to comment.