jimf5 is triggering pipeline #320
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: nginx-otel-module-check | |
run-name: ${{ github.actor }} is triggering pipeline | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
build-module: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y cmake libc-ares-dev libre2-dev python3-pip | |
- name: Checkout nginx | |
uses: actions/checkout@v4 | |
with: | |
repository: nginx/nginx | |
path: nginx | |
- name: Build nginx | |
working-directory: nginx | |
run: | | |
auto/configure --with-compat --with-debug --with-http_ssl_module \ | |
--with-http_v2_module --with-http_v3_module | |
make -j $(nproc) | |
- name: Create build directory | |
run: mkdir build | |
- name: Build module | |
working-directory: build | |
run: | | |
cmake -DNGX_OTEL_NGINX_BUILD_DIR=${PWD}/../nginx/objs \ | |
-DNGX_OTEL_DEV=ON .. | |
make -j $(nproc) | |
- name: Download otelcol | |
run: | | |
curl -LO https://github.com/\ | |
open-telemetry/opentelemetry-collector-releases/releases/download/\ | |
v0.113.0/otelcol_0.113.0_linux_amd64.tar.gz | |
tar -xzf otelcol_0.113.0_linux_amd64.tar.gz | |
- name: Run tests | |
working-directory: tests | |
run: | | |
pip install --root-user-action=ignore -r requirements.txt | |
TEST_NGINX_GLOBALS="load_module ${PWD}/../build/ngx_otel_module.so;" \ | |
pytest --log-cli-level=info |