-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2347 from AntelopeIO/asan_ci
add ASAN CI "platform"
- Loading branch information
Showing
2 changed files
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# syntax=docker/dockerfile:1 | ||
FROM ubuntu:jammy | ||
ENV TZ="America/New_York" | ||
ENV DEBIAN_FRONTEND=noninteractive | ||
RUN apt-get update && apt-get upgrade -y && \ | ||
apt-get install -y build-essential \ | ||
cmake \ | ||
git \ | ||
jq \ | ||
libcurl4-openssl-dev \ | ||
libgmp-dev \ | ||
llvm-11-dev \ | ||
lsb-release \ | ||
ninja-build \ | ||
python3-numpy \ | ||
software-properties-common \ | ||
file \ | ||
wget \ | ||
zlib1g-dev \ | ||
zstd | ||
|
||
RUN yes | bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)" llvm.sh 18 | ||
|
||
#make sure no confusion on what llvm library leap's cmake should pick up on | ||
RUN rm -rf /usr/lib/llvm-18/lib/cmake | ||
|
||
ENV LEAP_PLATFORM_HAS_EXTRAS_CMAKE=1 | ||
COPY <<-EOF /extras.cmake | ||
set(CMAKE_BUILD_TYPE "RelWithDebInfo" CACHE STRING "" FORCE) | ||
|
||
set(CMAKE_C_COMPILER "clang-18" CACHE STRING "") | ||
set(CMAKE_CXX_COMPILER "clang++-18" CACHE STRING "") | ||
set(CMAKE_C_FLAGS "-fsanitize=address -fno-omit-frame-pointer" CACHE STRING "") | ||
set(CMAKE_CXX_FLAGS "-fsanitize=address -fno-omit-frame-pointer" CACHE STRING "") | ||
EOF | ||
|
||
ENV ASAN_OPTIONS=detect_leaks=0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters