From f9db5d43a250ff47b004b7fa89668a25f39079e9 Mon Sep 17 00:00:00 2001 From: Dipin Hora Date: Wed, 15 Jan 2025 20:23:35 -0500 Subject: [PATCH] fix CI failure.. again.. again... again. --- .github/workflows/pr.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index c7e4a955b8..356e9432c9 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -498,16 +498,16 @@ jobs: - name: Build Debug Runtime (sanitizers) if: matrix.directives == 'pool_memalign,address_sanitizer,undefined_behavior_sanitizer' run: | - ASAN_OPTIONS=detect_leaks=0 PATH=build/libs/bin/:$PATH make configure arch=x86-64 config=debug use=${{ matrix.directives }} - ASAN_OPTIONS=detect_leaks=0 PATH=build/libs/bin/:$PATH make build config=debug + ASAN_OPTIONS=detect_leaks=0 PATH=$PWD/build/libs/bin/:$PATH make configure arch=x86-64 config=debug use=${{ matrix.directives }} + ASAN_OPTIONS=detect_leaks=0 PATH=$PWD/build/libs/bin/:$PATH make build config=debug - name: Test with Debug Runtime (sanitizers) if: matrix.directives == 'pool_memalign,address_sanitizer,undefined_behavior_sanitizer' - run: ASAN_OPTIONS=detect_leaks=0 PATH=build/libs/bin/:$PATH make test-ci config=debug + run: ASAN_OPTIONS=detect_leaks=0 PATH=$PWD/build/libs/bin/:$PATH make test-ci config=debug usedebugger='${{ matrix.debugger }}' - name: Build Release Runtime (sanitizers) if: matrix.directives == 'pool_memalign,address_sanitizer,undefined_behavior_sanitizer' run: | - ASAN_OPTIONS=detect_leaks=0 PATH=build/libs/bin/:$PATH make configure arch=x86-64 config=release use=${{ matrix.directives }} - ASAN_OPTIONS=detect_leaks=0 PATH=build/libs/bin/:$PATH make build config=release + ASAN_OPTIONS=detect_leaks=0 PATH=$PWD/build/libs/bin/:$PATH make configure arch=x86-64 config=release use=${{ matrix.directives }} + ASAN_OPTIONS=detect_leaks=0 PATH=$PWD/build/libs/bin/:$PATH make build config=release - name: Test with Release Runtime (sanitizers) if: matrix.directives == 'pool_memalign,address_sanitizer,undefined_behavior_sanitizer' - run: ASAN_OPTIONS=detect_leaks=0 PATH=build/libs/bin/:$PATH make test-ci config=release + run: ASAN_OPTIONS=detect_leaks=0 PATH=$PWD/build/libs/bin/:$PATH make test-ci config=release usedebugger='${{ matrix.debugger }}'