Skip to content

feat: integrate zlib-ng, PCRE2, and ngx_waf; update TLS dyn patch #104

feat: integrate zlib-ng, PCRE2, and ngx_waf; update TLS dyn patch

feat: integrate zlib-ng, PCRE2, and ngx_waf; update TLS dyn patch #104

Workflow file for this run

---
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
name: Compile NGINX
jobs:
compile:
runs-on: ubuntu-latest
strategy:
matrix:
os:
- ubuntu:22.04
- ubuntu:24.04
- debian:11
- debian:12
nginx_ver:
- STABLE
- MAINLINE
install_type:
- LIGHT
- FULL
ssl:
- SYSTEM
- OPENSSL
- LIBRESSL
exclude:
# FULL assumes HTTP/3 which will use BoringSSL
# So we exclude these
- install_type: FULL
ssl: LIBRESSL
fail-fast: false
steps:
- uses: actions/checkout@v5.0.0
- name: Build NGINX in Docker
continue-on-error: true
run: docker build . --file .github/workflows/docker/Dockerfile --build-arg NGINX_VER=${{ matrix.nginx_ver }} --build-arg BASE_IMAGE=${{ matrix.os }} --build-arg INSTALL_TYPE=${{ matrix.install_type }} --build-arg SSL=${{ matrix.ssl }}