We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e1e61d commit 37eb3e6Copy full SHA for 37eb3e6
.github/workflows/alpine.yml
@@ -13,7 +13,8 @@ jobs:
13
uses: actions/checkout@v4
14
- name: Install dependencies
15
run: |
16
- apk add build-base openssl-dev zlib-dev pcre2-dev
+ apk add build-base openssl-dev zlib-dev pcre2-dev \
17
+ cmake git grpc-dev protobuf-dev
18
- name: Checkout nginx
19
20
with:
@@ -25,3 +26,9 @@ jobs:
25
26
auto/configure --with-compat --with-debug --with-http_ssl_module \
27
--with-http_v2_module --with-http_v3_module
28
make -j $(nproc)
29
+ - name: Build module
30
+ working-directory: nginx
31
+ run: |
32
+ NGX_OTEL_CMAKE_OPTS="-D NGX_OTEL_GRPC=package" \
33
+ auto/configure --with-compat --add-dynamic-module=..
34
+ make -j $(nproc) modules
0 commit comments