Enable UBSan sanitizer on CI

This commit is contained in:
Ben Noordhuis 2023-11-01 09:27:38 +01:00
parent d6fbd6b744
commit f2a8f04f13

View file

@ -43,6 +43,13 @@ jobs:
- name: test - name: test
run: | run: |
make -j$(getconf _NPROCESSORS_ONLN) CONFIG_WERROR=y CONFIG_MSAN=y CONFIG_CLANG=y test make -j$(getconf _NPROCESSORS_ONLN) CONFIG_WERROR=y CONFIG_MSAN=y CONFIG_CLANG=y test
linux-ubsan:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: test
run: |
make -j$(getconf _NPROCESSORS_ONLN) CONFIG_WERROR=y CONFIG_UBSAN=y test
macos: macos:
runs-on: macos-latest runs-on: macos-latest