diff options
| author | Stefan Kangas | 2023-03-20 06:30:30 +0100 |
|---|---|---|
| committer | Stefan Kangas | 2023-03-20 06:30:30 +0100 |
| commit | c194a31fc4581125afa202e1641e3f2f54cd98bd (patch) | |
| tree | 4400a703f7fcc8210ab16431dbd137ebe6d3aa21 /test | |
| parent | 32bfeaf007046b8cdba2dd5aa5f5a556652ccb23 (diff) | |
| parent | 028f11027384b6fb6807ea4057073e3be4003e9e (diff) | |
| download | emacs-c194a31fc4581125afa202e1641e3f2f54cd98bd.tar.gz emacs-c194a31fc4581125afa202e1641e3f2f54cd98bd.zip | |
Merge from origin/emacs-29
028f1102738 Fix quoting of font-family in 'hfy-family'
4cb8a850b08 ; Tweak doc/misc/eglot.texi
d5d4959ed7d Document how to construct JSONRPC arrays in Eglot manual
078cf512eef * test/infra/Dockerfile.emba: Use debian:bullseye.
61adb44318a * configure.ac: Fix native comp compatibility check (bug#...
d814c249f44 * test/infra/Dockerfile.emba: Install clangd.
27edd7f88cb Remove 'package-vc--query-spec'
39fea115515 Do not store :lisp-dir in package descriptors
168165178f3 Use 'package-vc-selected-packages' to store package specs
Diffstat (limited to 'test')
| -rw-r--r-- | test/infra/Dockerfile.emba | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/infra/Dockerfile.emba b/test/infra/Dockerfile.emba index c005d872cb8..872591333e6 100644 --- a/test/infra/Dockerfile.emba +++ b/test/infra/Dockerfile.emba | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | # Maintainer: Ted Zlatanov <tzz@lifelogs.com> | 24 | # Maintainer: Ted Zlatanov <tzz@lifelogs.com> |
| 25 | # URL: https://emba.gnu.org/emacs/emacs | 25 | # URL: https://emba.gnu.org/emacs/emacs |
| 26 | 26 | ||
| 27 | FROM debian:stretch as emacs-base | 27 | FROM debian:bullseye 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 \ |
| @@ -34,9 +34,10 @@ RUN apt-get update && \ | |||
| 34 | 34 | ||
| 35 | FROM emacs-base as emacs-inotify | 35 | FROM emacs-base as emacs-inotify |
| 36 | 36 | ||
| 37 | # We install clangd for Eglot tests. | ||
| 37 | RUN apt-get update && \ | 38 | RUN apt-get update && \ |
| 38 | apt-get install -y --no-install-recommends -o=Dpkg::Use-Pty=0 \ | 39 | apt-get install -y --no-install-recommends -o=Dpkg::Use-Pty=0 \ |
| 39 | inotify-tools \ | 40 | inotify-tools clangd \ |
| 40 | && rm -rf /var/lib/apt/lists/* | 41 | && rm -rf /var/lib/apt/lists/* |
| 41 | 42 | ||
| 42 | COPY . /checkout | 43 | COPY . /checkout |