mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 12:53:13 +00:00
Add a Ubuntu bionic asan clang dockerfile test
This may be run with: ./docker/docker_run_tests.sh ./docker/bionic-asan-clang.Dockerfile
This commit is contained in:
parent
32c65aa32c
commit
2709467b73
1 changed files with 38 additions and 0 deletions
38
docker/bionic-asan-clang.Dockerfile
Normal file
38
docker/bionic-asan-clang.Dockerfile
Normal file
|
@ -0,0 +1,38 @@
|
|||
FROM ubuntu:18.04
|
||||
|
||||
ENV LANG C.UTF-8
|
||||
ENV LC_ALL C.UTF-8
|
||||
ENV CXXFLAGS="-fno-omit-frame-pointer -fsanitize=undefined -fsanitize=address" \
|
||||
CC=clang-9 \
|
||||
CXX=clang++-9 \
|
||||
ASAN_OPTIONS=check_initialization_order=1:detect_stack_use_after_return=1:detect_leaks=1 \
|
||||
UBSAN_OPTIONS=print_stacktrace=1:report_error_type=1
|
||||
|
||||
RUN apt-get update \
|
||||
&& apt-get -y install \
|
||||
build-essential \
|
||||
cmake \
|
||||
clang-9 \
|
||||
gettext \
|
||||
git \
|
||||
libncurses5-dev \
|
||||
locales \
|
||||
ninja-build \
|
||||
python3 \
|
||||
python3-pexpect \
|
||||
sudo \
|
||||
&& locale-gen en_US.UTF-8
|
||||
|
||||
RUN groupadd -g 1000 fishuser \
|
||||
&& useradd -p $(openssl passwd -1 fish) -d /home/fishuser -m -u 1000 -g 1000 fishuser \
|
||||
&& adduser fishuser sudo \
|
||||
&& mkdir -p /home/fishuser/fish-build \
|
||||
&& mkdir /fish-source \
|
||||
&& chown -R fishuser:fishuser /home/fishuser /fish-source
|
||||
|
||||
USER fishuser
|
||||
WORKDIR /home/fishuser
|
||||
|
||||
COPY fish_run_tests.sh /
|
||||
|
||||
CMD /fish_run_tests.sh
|
Loading…
Reference in a new issue