diff --git a/.github/workflows/nginx-otel-module-check.yml b/.github/workflows/nginx-otel-module-check.yml index e5ad89b5..94ba71e5 100644 --- a/.github/workflows/nginx-otel-module-check.yml +++ b/.github/workflows/nginx-otel-module-check.yml @@ -7,11 +7,6 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v3 - - name: Cache nginx build - uses: actions/cache@v3 - with: - path: nginx - key: ${{ runner.os }}-nginx - name: Install dependencies run: | sudo apt-get update @@ -20,8 +15,14 @@ jobs: run: hg clone http://hg.nginx.org/nginx/ - name: Configure nginx working-directory: nginx - run: auto/configure --with-compat --with-debug --with-http_ssl_module \ + run: | + auto/configure --with-compat --with-debug --with-http_ssl_module \ --with-http_v2_module --with-http_v3_module + - name: Cache nginx build + uses: actions/cache@v3 + with: + path: nginx + key: ${{ runner.os }}-nginx - name: Create build directory run: mkdir build - name: Build module