Skip to content

Commit

Permalink
NJS: set PATH during the step run in the msan build
Browse files Browse the repository at this point in the history
  • Loading branch information
thresheek committed May 23, 2024
1 parent 18489f1 commit 403d5af
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/njs-buildbot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -349,12 +349,11 @@ jobs:

- name: Configure and make njs (pcre2)
run: |
PATH="$(pwd)/pcre2/bin/:$PATH" \
./configure \
--no-openssl
|| cat build/autoconf.err
make -j$(nproc)
env:
PATH: "${{ github.workspace }}/pcre2/bin/:$PATH"
- name: Test njs
run: |
Expand All @@ -375,13 +374,12 @@ jobs:

- name: Configure and make njs (pcre)
run: |
PATH="$(pwd)/pcre/bin/:$PATH" \
./configure \
--no-openssl
--no-pcre2 \
|| cat build/autoconf.err
make -j$(nproc)
env:
PATH: "${{ github.workspace }}/pcre/bin/:$PATH"
- name: Test njs
run: |
Expand Down

0 comments on commit 403d5af

Please sign in to comment.