mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-05 21:45:37 +00:00
parent
40b2ec3c37
commit
23d9628f88
1 changed files with 15 additions and 0 deletions
15
.github/workflows/icu4c.yml
vendored
15
.github/workflows/icu4c.yml
vendored
|
@ -173,6 +173,21 @@ jobs:
|
|||
env:
|
||||
CPPFLAGS: -fsanitize=address
|
||||
LDFLAGS: -fsanitize=address
|
||||
# Clang Linux with leak sanitizer.
|
||||
clang-lsan:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
||||
|
||||
- name: ICU4C with clang and lsan
|
||||
run: |
|
||||
cd icu4c/source;
|
||||
./runConfigureICU --enable-debug --disable-release Linux/clang --disable-renaming --enable-tracing;
|
||||
make -j -l4.5 check;
|
||||
env:
|
||||
CPPFLAGS: -fsanitize=leak
|
||||
LDFLAGS: -fsanitize=leak
|
||||
ASAN_OPTIONS: detect_leaks=1
|
||||
# Clang Linux with undefined-behavior sanitizer.
|
||||
clang-ubsan:
|
||||
runs-on: ubuntu-latest
|
||||
|
|
Loading…
Add table
Reference in a new issue