Skip to content

Commit

Permalink
Update sanitizer.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
vtjnash committed Jan 16, 2024
1 parent bac1c1e commit 7292e09
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions .github/workflows/sanitizer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,19 +98,21 @@ jobs:
with:
version: "17"

- name: ASAN Build
- name: UBSAN Configure
run:
cmake -B build-asan -S . -G Ninja -DBUILD_TESTING=ON -DASAN=ON -DCMAKE_BUILD_TYPE=Debug -DHOST_ARCH=x86_64 -DCMAKE_TOOLCHAIN_FILE="cmake-toolchains\\cross-mingw32.cmake"

cmake --build build-asan
- name: ASAN Test
run: |
./build-asan/uv_run_tests_a
- name: UBSAN Build
run: |
cmake -B build-ubsan -S . -G Ninja -DBUILD_TESTING=ON -DUBSAN=ON -DCMAKE_BUILD_TYPE=Debug -DCMAKE_C_COMPILER=clang
- name: UBSAN Build
cmake --build build-ubsan
- name: UBSAN Test
run: |
./build-ubsan/uv_run_tests_a
- name: ASAN Configure
run:
cmake -B build-asan -S . -G Ninja -DBUILD_TESTING=ON -DASAN=ON -DCMAKE_BUILD_TYPE=Debug -DCMAKE_C_COMPILER=clang
- name: ASAN Build
run:
cmake --build build-asan
- name: ASAN Test
run: |
./build-asan/uv_run_tests_a

0 comments on commit 7292e09

Please sign in to comment.