Commit 7a4bb5fd authored by Kirill Kolyshkin's avatar Kirill Kolyshkin Committed by Andrei Vagin

Dockerfile.fedora-asan: don't ignore failures

Same as commit e4000c59 ("Dockerfiles: don't ignore make failures").
Seems that Dockerfile.fedora-asan copy/pasted an old version.
Signed-off-by: 's avatarKir Kolyshkin <kolyshkin@gmail.com>
Signed-off-by: 's avatarAndrei Vagin <avagin@virtuozzo.com>
parent 20a460fa
......@@ -10,7 +10,7 @@ COPY . /criu
WORKDIR /criu
ENV CCACHE_DIR=/tmp/.ccache CCACHE_NOCOMPRESS=1 $ENV1=yes
RUN mv .ccache /tmp; make mrproper; ccache -s; \
date; make -j $(nproc) ASAN=1 CC="$CC"; date
RUN mv .ccache /tmp && make mrproper && ccache -s && \
date && make -j $(nproc) ASAN=1 CC="$CC" && date
RUN make ASAN=1 -C test/zdtm -j $(nproc)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment