Skip to content

Commit

Permalink
NJS: pass the same include path to prove if tests fail
Browse files Browse the repository at this point in the history
  • Loading branch information
thresheek committed May 23, 2024
1 parent 6d35eed commit 7714283
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/njs-buildbot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ jobs:
- name: Test njs modules
run: |
ulimit -c unlimited
prove -v -j$(nproc) -Inginx-tests/lib --state=save nginx/t . || prove -v --state=failed
prove -v -j$(nproc) -Inginx-tests/lib --state=save nginx/t . || prove -v -Inginx-tests/lib --state=failed
env:
TEST_NGINX_BINARY: "${{ github.workspace }}/nginx-source/objs/nginx"
TEST_NGINX_GLOBALS: "load_module ${{ github.workspace }}/nginx-source/objs/ngx_http_js_module.so; load_module ${{ github.workspace }}/nginx-source/objs/ngx_stream_js_module.so;"
Expand Down Expand Up @@ -320,7 +320,7 @@ jobs:
- name: Test njs modules
run: |
ulimit -c unlimited
prove -v -j$(nproc) -Inginx-tests/lib --state=save nginx/t . || prove -v --state=failed
prove -v -j$(nproc) -Inginx-tests/lib --state=save nginx/t . || prove -v -Inginx-tests/lib --state=failed
env:
ASAN_OPTIONS: "detect_odr_violation=0:report_globals=0:detect_leaks=0"
TEST_NGINX_BINARY: "${{ github.workspace }}/nginx-source/objs/nginx"
Expand Down

0 comments on commit 7714283

Please sign in to comment.