Skip to content

Commit

Permalink
fixup! test: swith to pytest
Browse files Browse the repository at this point in the history
  • Loading branch information
jimf5 committed Dec 6, 2023
1 parent 59de164 commit 8b200a6
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/nginx-otel-module-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 8b200a6

Please sign in to comment.