Skip to content

Commit

Permalink
fix CI failure.. again.. again... again.
Browse files Browse the repository at this point in the history
  • Loading branch information
dipinhora committed Jan 16, 2025
1 parent 763b0f5 commit f9db5d4
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}'

0 comments on commit f9db5d4

Please sign in to comment.