Build module. #8
Workflow file for this run
This file contains hidden or 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: Alpine build | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| build-module: | |
| runs-on: ubuntu-latest | |
| container: alpine | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: | | |
| apk add build-base openssl-dev zlib-dev pcre2-dev \ | |
| cmake grpc-dev protobuf-dev | |
| - 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: Build module | |
| working-directory: nginx | |
| run: | | |
| NGX_OTEL_CMAKE_OPTS="-D NGX_OTEL_GRPC=package" \ | |
| auto/configure --with-compat --add-dynamic-module=.. | |
| make -j $(nproc) modules |