chore(CI): build deps using Bazel #1731
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test | |
on: | |
push: | |
branches: | |
- master | |
- lts | |
- lts-dev | |
- current | |
- current-dev | |
pull_request: | |
workflow_dispatch: | |
defaults: | |
run: | |
shell: bash | |
# cancel previous runs if new commits are pushed to the PR, but run for each commit on master | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
build_test: | |
name: Build & Test | |
runs-on: ubuntu-latest | |
container: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: ["ubuntu:jammy", "debian:buster", "redhat/ubi9"] | |
nginx-version: ['stable', 'mainline'] | |
module-type: ['static', 'dynamic'] | |
steps: | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: '3.x' | |
architecture: 'x64' | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.ref }} | |
submodules: true | |
- name: Install dependencies | |
if: ${{ startsWith(matrix.os, 'ubuntu') || startsWith(matrix.os, 'debian') }} | |
run: | | |
sudo apt-get --yes update | |
# https://github.com/actions/runner-images/issues/2139 | |
# sudo apt-get remove nginx-core \ | |
# nginx-full \ | |
# nginx-light \ | |
# nginx-extras \ | |
# libgd3 | |
sudo apt-get install --yes \ | |
build-essential \ | |
zlib1g-dev \ | |
libpcre3 \ | |
libpcre3-dev \ | |
libssl-dev \ | |
libxslt1-dev \ | |
libxml2-dev \ | |
libgeoip-dev \ | |
libgd-dev \ | |
libperl-dev | |
- name: Build dependencies | |
run: | | |
bazel build --registry=file://$(realpath ngx_waf_deps) //:deps | |
pushd bazel-bin | |
tar -zxf deps.tar.gz | |
echo "$(realpath deps/libmodsecurity/lib)" | sudo tee -a /etc/ld.so.conf.d/ngx_waf.conf | |
echo "$(realpath deps/libsodium/lib)" | sudo tee -a /etc/ld.so.conf.d/ngx_waf.conf | |
echo "$(realpath deps/libcjson/lib)" | sudo tee -a /etc/ld.so.conf.d/ngx_waf.conf | |
sudo ldconfig | |
echo "LIB_MODSECURITY=$(realpath deps/libmodsecurity)" >> "$GITHUB_ENV" | |
echo "LIB_SODIUM=$(realpath deps/libsodium)" >> "$GITHUB_ENV" | |
echo "LIB_CJSON=$(realpath deps/libcjson)" >> "$GITHUB_ENV" | |
echo "LIB_UTHASH=$(realpath deps/uthash)" >> "$GITHUB_ENV" | |
popd | |
- name: Download & Build & Install nginx-${{ matrix.nginx-version }} | |
run: | | |
sudo pip install lastversion | |
lastversion download nginx:${{ matrix.nginx-version }} | |
mkdir nginx-src | |
tar zxf nginx-*.tar.gz --directory nginx-src --strip-components=1 | |
cd nginx-src | |
if [ ${{ matrix.module-type }} = 'static module' ] ; then \ | |
opt='--add-module' ;\ | |
else \ | |
opt='--add-dynamic-module' ;\ | |
fi | |
./configure ${opt}=${{ github.workspace }} --with-http_realip_module --with-cc-opt='-Wno-unused-but-set-variable -Wno-unused-function -fstack-protector-strong' | |
make -j$(nproc) | |
sudo make install | |
sudo useradd nginx -s /sbin/nologin -M | |
sudo chmod 777 -R /usr/local/nginx | |
sudo ln -s /usr/local/nginx/sbin/nginx /usr/local/bin/nginx | |
- name: Install Test::Nginx | |
run: | | |
sudo cpan Test::Nginx | |
- name: Test | |
run: | | |
sudo chmod 777 -R /tmp | |
cd test/test-nginx | |
export MODULE_TEST_PATH=/tmp/module_test | |
sh ./init.sh | |
exec sudo sh start.sh t/*.t |