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 4e1a41d commit ffef6b5
Showing 1 changed file with 10 additions and 13 deletions.
23 changes: 10 additions & 13 deletions .github/workflows/nginx-otel-module-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,9 @@ jobs:
sudo apt-get install -y cmake libc-ares-dev libre2-dev
- name: Checkout nginx
run: hg clone http://hg.nginx.org/nginx/
- name: Cache nginx build
uses: actions/cache@v3
with:
path: nginx
key: ${{ runner.os }}-nginx
- name: Configure nginx
working-directory: nginx
run: |
auto/configure --with-compat --with-debug --with-http_ssl_module \
--with-http_v2_module --with-http_v3_module
run: auto/configure --with-compat
- name: Create build directory
run: mkdir build
- name: Build module
Expand All @@ -42,16 +35,20 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Restore cached nginx build
uses: actions/cache/restore@v3
with:
path: nginx
key: ${{ runner.os }}-nginx
- name: Download module
uses: actions/download-artifact@v3
with:
name: nginx-otel-module
path: build
- name: Checkout nginx
run: |
hg clone http://hg.nginx.org/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 4
- name: Install test dependecies
working-directory: tests
run: |
Expand Down

0 comments on commit ffef6b5

Please sign in to comment.