Skip to content

Commit

Permalink
fix CI failure.. again.. again... again. and again..
Browse files Browse the repository at this point in the history
  • Loading branch information
dipinhora committed Jan 16, 2025
1 parent f9db5d4 commit d729bb4
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -498,16 +498,18 @@ jobs:
- name: Build Debug Runtime (sanitizers)
if: matrix.directives == 'pool_memalign,address_sanitizer,undefined_behavior_sanitizer'
run: |
$PWD/build/libs/bin/llvm-symbolizer --help
PATH=$PWD/build/libs/bin/:$PATH llvm-symbolizer --help
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=$PWD/build/libs/bin/:$PATH make test-ci config=debug usedebugger='${{ matrix.debugger }}'
run: ASAN_OPTIONS=detect_leaks=0 PATH=$PWD/build/libs/bin/:$PATH make test-ci config=debug
- name: Build Release Runtime (sanitizers)
if: matrix.directives == 'pool_memalign,address_sanitizer,undefined_behavior_sanitizer'
run: |
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=$PWD/build/libs/bin/:$PATH make test-ci config=release usedebugger='${{ matrix.debugger }}'
run: ASAN_OPTIONS=detect_leaks=0 PATH=$PWD/build/libs/bin/:$PATH make test-ci config=release

0 comments on commit d729bb4

Please sign in to comment.