projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
35e29d9
)
* test/infra/Dockerfile.emba: Do not run 'make -j4 bootstrap'.
author
Michael Albinus
<michael.albinus@gmx.de>
Thu, 23 Sep 2021 14:04:35 +0000
(16:04 +0200)
committer
Michael Albinus
<michael.albinus@gmx.de>
Thu, 23 Sep 2021 14:04:35 +0000
(16:04 +0200)
test/infra/Dockerfile.emba
patch
|
blob
|
history
diff --git
a/test/infra/Dockerfile.emba
b/test/infra/Dockerfile.emba
index 0b61c74aefe1602cf8de99e41f20500a8d46b3bf..e79f370f170a6fca9b701f86a18348c76690bbe3 100644
(file)
--- 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