aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorStefan Kangas2023-03-20 06:30:30 +0100
committerStefan Kangas2023-03-20 06:30:30 +0100
commitc194a31fc4581125afa202e1641e3f2f54cd98bd (patch)
tree4400a703f7fcc8210ab16431dbd137ebe6d3aa21 /test
parent32bfeaf007046b8cdba2dd5aa5f5a556652ccb23 (diff)
parent028f11027384b6fb6807ea4057073e3be4003e9e (diff)
downloademacs-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.emba5
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
27FROM debian:stretch as emacs-base 27FROM debian:bullseye 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 \
@@ -34,9 +34,10 @@ RUN apt-get update && \
34 34
35FROM emacs-base as emacs-inotify 35FROM emacs-base as emacs-inotify
36 36
37# We install clangd for Eglot tests.
37RUN apt-get update && \ 38RUN 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
42COPY . /checkout 43COPY . /checkout