It was being done so that the second one prints errors without races.
However, the same thing can be achieved by passing -Orecurse to make(1).
And this makes the logs even more readable, since there's no racy output
at all.
Fixes: 97f79e3b27 ("CI: Make build logs more readable")
Link: <https://github.com/shadow-maint/shadow/pull/702>
Link: <https://github.com/nginx/unit/pull/1123>
Acked-by: Iker Pedrosa <ipedrosa@redhat.com>
Cc: Andrew Clayton <a.clayton@nginx.com>
Cc: Konstantin Pavlov <thresh@nginx.com>
Cc: Dylan Arbour <https://github.com/arbourd>
Signed-off-by: Alejandro Colomar <alx@kernel.org>
33 lines
810 B
Docker
33 lines
810 B
Docker
ARG OS_IMAGE="debian:latest"
|
|
|
|
FROM "${OS_IMAGE}" AS build
|
|
|
|
RUN cat /etc/apt/sources.list.d/debian.sources
|
|
RUN sed -i 's/Types: deb/Types: deb deb-src/g' /etc/apt/sources.list.d/debian.sources
|
|
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 \
|
|
libltdl-dev \
|
|
libbsd-dev \
|
|
libcmocka-dev \
|
|
pkgconf \
|
|
-y
|
|
|
|
COPY ./ /usr/local/src/shadow/
|
|
WORKDIR /usr/local/src/shadow/
|
|
|
|
RUN ./autogen.sh \
|
|
--without-selinux \
|
|
--enable-man \
|
|
--with-yescrypt
|
|
RUN make -Orecurse -j4
|
|
RUN bash -c "trap 'cat <tests/unit/test-suite.log >&2' ERR; make check;"
|
|
RUN make install
|
|
|
|
FROM scratch AS export
|
|
COPY --from=build /usr/local/src/shadow/config.log \
|
|
/usr/local/src/shadow/config.h ./
|