From 7a4bb5fddf5d5b768b173c4e2ab926311e2e8061 Mon Sep 17 00:00:00 2001 From: Kirill Kolyshkin Date: Sun, 1 Oct 2017 13:43:23 -0700 Subject: [PATCH] Dockerfile.fedora-asan: don't ignore failures Same as commit e4000c59a71 ("Dockerfiles: don't ignore make failures"). Seems that Dockerfile.fedora-asan copy/pasted an old version. Signed-off-by: Kir Kolyshkin Signed-off-by: Andrei Vagin --- scripts/build/Dockerfile.fedora-asan | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/build/Dockerfile.fedora-asan b/scripts/build/Dockerfile.fedora-asan index 13aad28a0..5db430752 100644 --- a/scripts/build/Dockerfile.fedora-asan +++ b/scripts/build/Dockerfile.fedora-asan @@ -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)