Skip to content

jimf5 is triggering pipeline #311

jimf5 is triggering pipeline

jimf5 is triggering pipeline #311

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-venv
- 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)
run: auto/configure --with-compat

Check failure on line 28 in .github/workflows/nginx-otel-module-check.yml

View workflow run for this annotation

GitHub Actions / nginx-otel-module-check

Invalid workflow file

The workflow is not valid. .github/workflows/nginx-otel-module-check.yml (Line: 28, Col: 9): 'run' is already defined
- name: Create build directory
run: mkdir build
- name: Build module
working-directory: build
run: |
cmake -DNGX_OTEL_NGINX_BUILD_DIR=${GITHUB_WORKSPACE}/nginx/objs \
-DNGX_OTEL_DEV=ON ${GITHUB_WORKSPACE}
make -j $(nproc)
- name: Download otelcol
uses: robinraju/[email protected]
with:
repository: open-telemetry/opentelemetry-collector-releases
tag: v0.113.0
fileName: otelcol_0.113.0_linux_amd64.tar.gz
extract: true
- name: Run tests
working-directory: tests
env:
TEST_NGINX_GLOBALS: |
load_module ../build/ngx_otel_module.so;
run: |
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
pytest --log-cli-level=debug