From 27083bb89fc6076b64efbab452793fc654430648 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Dunglas?= Date: Wed, 7 Aug 2024 22:18:32 +0200 Subject: [PATCH] more tests --- .github/workflows/sanitizers.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/sanitizers.yaml b/.github/workflows/sanitizers.yaml index cce03ec0f..b5fab9669 100644 --- a/.github/workflows/sanitizers.yaml +++ b/.github/workflows/sanitizers.yaml @@ -47,7 +47,7 @@ jobs: id: cache-php uses: actions/cache@v4 with: - path: php/target/ + path: php/ key: php-sanitizers-${{ runner.arch }}-${{ steps.determine-php-version.outputs.version }} - if: steps.cache-php.outputs.cache-hit != 'true' @@ -65,18 +65,18 @@ jobs: --disable-cli \ --disable-cgi \ --disable-phpdbg \ - --prefix="$(pwd)/target/" + #--prefix="$(pwd)/target/" make -j"$(getconf _NPROCESSORS_ONLN)" - make install + sudo make install - name: Add PHP to the PATH run: | - echo "$(pwd)/php/target/bin" >> "$GITHUB_PATH" + #echo "$(pwd)/php/target/bin" >> "$GITHUB_PATH" - name: Set CGO flags run: | { - echo "LIBRARY_PATH=$LIBRARY_PATH:$(pwd)/php/target/lib" + #echo "LIBRARY_PATH=$LIBRARY_PATH:$(pwd)/php/target/lib" # https://github.com/google/sanitizers/wiki/AddressSanitizerAsDso #echo "LD_PRELOAD=$(clang -print-file-name=libclang_rt.asan-x86_64.so)" echo "CGO_CFLAGS=$CFLAGS $(php-config --includes)"