]> git.eshelyaron.com Git - emacs.git/commitdiff
* test/infra/Dockerfile.emba: Do not run 'make -j4 bootstrap'.
authorMichael Albinus <michael.albinus@gmx.de>
Thu, 23 Sep 2021 14:04:35 +0000 (16:04 +0200)
committerMichael Albinus <michael.albinus@gmx.de>
Thu, 23 Sep 2021 14:04:35 +0000 (16:04 +0200)
test/infra/Dockerfile.emba

index 0b61c74aefe1602cf8de99e41f20500a8d46b3bf..e79f370f170a6fca9b701f86a18348c76690bbe3 100644 (file)
@@ -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