diff options
| author | Michael Albinus | 2021-03-07 18:55:44 +0100 |
|---|---|---|
| committer | Michael Albinus | 2021-03-07 18:55:44 +0100 |
| commit | c1f4a16cf3d71aa3f67c1c209e7060dc71afc545 (patch) | |
| tree | 82343ea481b6a5c1c1594bb0f693db7ce162ad1c | |
| parent | d4d92464119c38c8b87b2a10fa1999fe230c51f7 (diff) | |
| download | emacs-c1f4a16cf3d71aa3f67c1c209e7060dc71afc545.tar.gz emacs-c1f4a16cf3d71aa3f67c1c209e7060dc71afc545.zip | |
* test/infra/Dockerfile.emba: Install texinfo.
| -rw-r--r-- | test/infra/Dockerfile.emba | 11 |
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 | ||
| 29 | RUN apt-get update && \ | 29 | RUN 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 | ||
| 34 | FROM emacs-base as emacs-inotify | 34 | FROM emacs-base as emacs-inotify |
| @@ -39,11 +39,10 @@ RUN apt-get update && \ | |||
| 39 | 39 | ||
| 40 | COPY . /checkout | 40 | COPY . /checkout |
| 41 | WORKDIR /checkout | 41 | WORKDIR /checkout |
| 42 | RUN mkdir info && touch info/emacs | ||
| 43 | RUN ./autogen.sh autoconf | 42 | RUN ./autogen.sh autoconf |
| 44 | RUN ./configure | 43 | RUN ./configure |
| 45 | RUN make -j4 bootstrap | 44 | RUN make -j4 bootstrap |
| 46 | RUN make -j4 lisp | 45 | RUN make -j4 |
| 47 | 46 | ||
| 48 | FROM emacs-base as emacs-filenotify-gio | 47 | FROM emacs-base as emacs-filenotify-gio |
| 49 | 48 | ||
| @@ -53,11 +52,10 @@ RUN apt-get update && \ | |||
| 53 | 52 | ||
| 54 | COPY . /checkout | 53 | COPY . /checkout |
| 55 | WORKDIR /checkout | 54 | WORKDIR /checkout |
| 56 | RUN mkdir info && touch info/emacs | ||
| 57 | RUN ./autogen.sh autoconf | 55 | RUN ./autogen.sh autoconf |
| 58 | RUN ./configure --with-file-notification=gfile | 56 | RUN ./configure --with-file-notification=gfile |
| 59 | RUN make -j4 bootstrap | 57 | RUN make -j4 bootstrap |
| 60 | RUN make -j4 lisp | 58 | RUN make -j4 |
| 61 | 59 | ||
| 62 | FROM emacs-base as emacs-gnustep | 60 | FROM emacs-base as emacs-gnustep |
| 63 | 61 | ||
| @@ -67,8 +65,7 @@ RUN apt-get update && \ | |||
| 67 | 65 | ||
| 68 | COPY . /checkout | 66 | COPY . /checkout |
| 69 | WORKDIR /checkout | 67 | WORKDIR /checkout |
| 70 | RUN mkdir info && touch info/emacs | ||
| 71 | RUN ./autogen.sh autoconf | 68 | RUN ./autogen.sh autoconf |
| 72 | RUN ./configure --with-ns | 69 | RUN ./configure --with-ns |
| 73 | RUN make -j4 bootstrap | 70 | RUN make -j4 bootstrap |
| 74 | RUN make -j4 lisp | 71 | RUN make -j4 |