2022-04-10 12:05:54 +00:00
|
|
|
name: Check ASan & UBSan
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches-ignore:
|
|
|
|
- master
|
|
|
|
- staging.tmp
|
|
|
|
- trying.tmp
|
|
|
|
- staging-squash-merge.tmp
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
check-clang-san:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-10-25 11:50:49 +00:00
|
|
|
- uses: actions/checkout@v3
|
2022-04-10 12:05:54 +00:00
|
|
|
with:
|
|
|
|
submodules: true
|
|
|
|
|
|
|
|
- name: Prepare linux
|
|
|
|
run: |
|
|
|
|
sudo apt-get update -y
|
|
|
|
sudo apt-get install pkg-config cmake ninja-build libfreetype6-dev libnotify-dev libsdl2-dev libsqlite3-dev libavcodec-dev libavformat-dev libavutil-dev libswresample-dev libswscale-dev libx264-dev libvulkan-dev glslang-tools spirv-tools -y
|
|
|
|
- name: Build with ASan and UBSan
|
|
|
|
run: |
|
|
|
|
mkdir san
|
|
|
|
cd san
|
|
|
|
export CC=clang
|
|
|
|
export CXX=clang++
|
|
|
|
export CXXFLAGS="-fsanitize=address,undefined -fsanitize-recover=address,undefined -fno-omit-frame-pointer"
|
|
|
|
export CFLAGS="-fsanitize=address,undefined -fsanitize-recover=address,undefined -fno-omit-frame-pointer"
|
|
|
|
cmake -DCMAKE_BUILD_TYPE=Debug -DHEADLESS_CLIENT=ON ..
|
|
|
|
make -j"$(nproc)"
|
|
|
|
- name: Run server and headless client with ASan and UBSan
|
|
|
|
run: |
|
|
|
|
cd san
|
2022-04-18 15:32:06 +00:00
|
|
|
export UBSAN_OPTIONS=suppressions=../ubsan.supp:log_path=./SAN:print_stacktrace=1:halt_on_errors=0
|
|
|
|
export ASAN_OPTIONS=log_path=./SAN:print_stacktrace=1:check_initialization_order=1:detect_leaks=1:halt_on_errors=0
|
2022-06-05 17:37:08 +00:00
|
|
|
export LSAN_OPTIONS=suppressions=../lsan.supp
|
2022-04-10 12:05:54 +00:00
|
|
|
./DDNet "cl_download_skins 0;quit" || true
|
|
|
|
./DDNet-Server shutdown || true
|
|
|
|
if test -n "$(find . -maxdepth 1 -name 'SAN.*' -print -quit)"
|
|
|
|
then
|
|
|
|
cat ./SAN.*
|
|
|
|
exit 1
|
|
|
|
fi
|
2022-04-18 17:28:37 +00:00
|
|
|
- name: Run integration tests with ASan and UBSan
|
|
|
|
run: |
|
2022-06-06 09:55:30 +00:00
|
|
|
cd san
|
|
|
|
make run_integration_tests
|