97f79e3b27
If make fails in a multi-process invocation, the log is pretty much unreadable. To make it readable, build as much as can be built without failing. Then run a single-process make again. If we succeeded previously, this should be a no-op. If not, this run will stop at the first error, which should be more readable, and will only print the few lines we're interested in. This has some side effects: Now we build as much as we can, instead of failing as early as possible; this may make CI a bit slower. However, it also has the benefit that you see _all_ the error messages that could be given, instead of needing to fix the first error to see the next and so on. Cc: Iker Pedrosa <ipedrosa@redhat.com> Signed-off-by: Alejandro Colomar <alx@kernel.org>
26 lines
698 B
Docker
26 lines
698 B
Docker
ARG OS_IMAGE="debian:latest"
|
|
|
|
FROM "${OS_IMAGE}" AS build
|
|
|
|
RUN cat /etc/apt/sources.list
|
|
RUN sed -i '/deb-src/d' /etc/apt/sources.list \
|
|
&& sed -i '/^deb /p;s/ /-src /' /etc/apt/sources.list
|
|
RUN export DEBIAN_PRIORITY=critical \
|
|
&& export DEBIAN_FRONTEND=noninteractive
|
|
RUN apt-get update -y \
|
|
&& apt-get dist-upgrade -y
|
|
RUN apt-get build-dep shadow -y
|
|
RUN apt-get install libbsd-dev pkgconf -y
|
|
|
|
COPY ./ /usr/local/src/shadow/
|
|
WORKDIR /usr/local/src/shadow/
|
|
|
|
RUN ./autogen.sh --without-selinux --enable-man --with-yescrypt
|
|
RUN make -kj4 || true
|
|
RUN make
|
|
RUN make install
|
|
|
|
FROM scratch AS export
|
|
COPY --from=build /usr/local/src/shadow/config.log \
|
|
/usr/local/src/shadow/config.h ./
|