From 403d5af652f44d4ac7fca50fa1f1f3ac99a80a4e Mon Sep 17 00:00:00 2001 From: Konstantin Pavlov Date: Wed, 22 May 2024 22:23:41 -0700 Subject: [PATCH] NJS: set PATH during the step run in the msan build --- .github/workflows/njs-buildbot.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/njs-buildbot.yml b/.github/workflows/njs-buildbot.yml index b5ae190..fc60f26 100644 --- a/.github/workflows/njs-buildbot.yml +++ b/.github/workflows/njs-buildbot.yml @@ -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: | @@ -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: |