aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Albinus2021-03-07 18:55:44 +0100
committerMichael Albinus2021-03-07 18:55:44 +0100
commitc1f4a16cf3d71aa3f67c1c209e7060dc71afc545 (patch)
tree82343ea481b6a5c1c1594bb0f693db7ce162ad1c
parentd4d92464119c38c8b87b2a10fa1999fe230c51f7 (diff)
downloademacs-c1f4a16cf3d71aa3f67c1c209e7060dc71afc545.tar.gz
emacs-c1f4a16cf3d71aa3f67c1c209e7060dc71afc545.zip
* test/infra/Dockerfile.emba: Install texinfo.
-rw-r--r--test/infra/Dockerfile.emba11
1 files changed, 4 insertions, 7 deletions
diff --git a/test/infra/Dockerfile.emba b/test/infra/Dockerfile.emba
index 63a48b4ef6f..cde657aada6 100644
--- a/test/infra/Dockerfile.emba
+++ b/test/infra/Dockerfile.emba
@@ -28,7 +28,7 @@ FROM debian:stretch as emacs-base
28 28
29RUN apt-get update && \ 29RUN apt-get update && \
30 apt-get install -y --no-install-recommends -o=Dpkg::Use-Pty=0 \ 30 apt-get install -y --no-install-recommends -o=Dpkg::Use-Pty=0 \
31 libc-dev gcc g++ make autoconf automake libncurses-dev gnutls-dev git \ 31 libc-dev gcc g++ make autoconf automake libncurses-dev gnutls-dev git texinfo \
32 && rm -rf /var/lib/apt/lists/* 32 && rm -rf /var/lib/apt/lists/*
33 33
34FROM emacs-base as emacs-inotify 34FROM emacs-base as emacs-inotify
@@ -39,11 +39,10 @@ RUN apt-get update && \
39 39
40COPY . /checkout 40COPY . /checkout
41WORKDIR /checkout 41WORKDIR /checkout
42RUN mkdir info && touch info/emacs
43RUN ./autogen.sh autoconf 42RUN ./autogen.sh autoconf
44RUN ./configure 43RUN ./configure
45RUN make -j4 bootstrap 44RUN make -j4 bootstrap
46RUN make -j4 lisp 45RUN make -j4
47 46
48FROM emacs-base as emacs-filenotify-gio 47FROM emacs-base as emacs-filenotify-gio
49 48
@@ -53,11 +52,10 @@ RUN apt-get update && \
53 52
54COPY . /checkout 53COPY . /checkout
55WORKDIR /checkout 54WORKDIR /checkout
56RUN mkdir info && touch info/emacs
57RUN ./autogen.sh autoconf 55RUN ./autogen.sh autoconf
58RUN ./configure --with-file-notification=gfile 56RUN ./configure --with-file-notification=gfile
59RUN make -j4 bootstrap 57RUN make -j4 bootstrap
60RUN make -j4 lisp 58RUN make -j4
61 59
62FROM emacs-base as emacs-gnustep 60FROM emacs-base as emacs-gnustep
63 61
@@ -67,8 +65,7 @@ RUN apt-get update && \
67 65
68COPY . /checkout 66COPY . /checkout
69WORKDIR /checkout 67WORKDIR /checkout
70RUN mkdir info && touch info/emacs
71RUN ./autogen.sh autoconf 68RUN ./autogen.sh autoconf
72RUN ./configure --with-ns 69RUN ./configure --with-ns
73RUN make -j4 bootstrap 70RUN make -j4 bootstrap
74RUN make -j4 lisp 71RUN make -j4