Travis: Add Clang UBSan build configuration
parent
6efe4e2841
commit
7b73fe8b02
|
@ -26,6 +26,10 @@ function generate()
|
||||||
OPTIONS="$OPTIONS -DASSIMP_ASAN=OFF"
|
OPTIONS="$OPTIONS -DASSIMP_ASAN=OFF"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ "$UBSAN" = "ON" ] ; then
|
||||||
|
OPTIONS="$OPTIONS -DASSIMP_UBSAN=ON"
|
||||||
|
fi
|
||||||
|
|
||||||
cmake -G "Unix Makefiles" $OPTIONS
|
cmake -G "Unix Makefiles" $OPTIONS
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -46,6 +46,9 @@ matrix:
|
||||||
- os: linux
|
- os: linux
|
||||||
compiler: clang
|
compiler: clang
|
||||||
env: ASAN=ON
|
env: ASAN=ON
|
||||||
|
- os: linux
|
||||||
|
compiler: clang
|
||||||
|
env: UBSAN=ON
|
||||||
- os: linux
|
- os: linux
|
||||||
compiler: clang
|
compiler: clang
|
||||||
env: SHARED_BUILD=ON
|
env: SHARED_BUILD=ON
|
||||||
|
|
Loading…
Reference in New Issue