From: Michael Albinus Date: Thu, 23 Sep 2021 14:04:35 +0000 (+0200) Subject: * test/infra/Dockerfile.emba: Do not run 'make -j4 bootstrap'. X-Git-Tag: emacs-28.0.90~717 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=de7b9e31c49a3d55e6ceba8a20edbe1a290f6781;p=emacs.git * test/infra/Dockerfile.emba: Do not run 'make -j4 bootstrap'. --- diff --git a/test/infra/Dockerfile.emba b/test/infra/Dockerfile.emba index 0b61c74aefe..e79f370f170 100644 --- a/test/infra/Dockerfile.emba +++ b/test/infra/Dockerfile.emba @@ -41,7 +41,8 @@ COPY . /checkout WORKDIR /checkout RUN ./autogen.sh autoconf RUN ./configure -RUN make -j4 bootstrap +# 'make -j4 bootstrap' does not work reliably. +RUN make bootstrap RUN make -j4 FROM emacs-base as emacs-filenotify-gio @@ -55,7 +56,7 @@ COPY . /checkout WORKDIR /checkout RUN ./autogen.sh autoconf RUN ./configure --with-file-notification=gfile -RUN make -j4 bootstrap +RUN make bootstrap RUN make -j4 FROM emacs-base as emacs-gnustep