From 8b200a67c6e067f3e6476e6493e8f3d2bf17f29f Mon Sep 17 00:00:00 2001 From: Eugene Grebenschikov Date: Tue, 5 Dec 2023 16:29:11 -0800 Subject: [PATCH] fixup! test: swith to pytest --- .github/workflows/nginx-otel-module-check.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) 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