[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
master 6213ca44d43: Use debian:bookworm for tests on emba
From: |
Michael Albinus |
Subject: |
master 6213ca44d43: Use debian:bookworm for tests on emba |
Date: |
Wed, 16 Oct 2024 11:27:00 -0400 (EDT) |
branch: master
commit 6213ca44d43688e14641034ebdd8fab4b360d224
Author: Michael Albinus <michael.albinus@gmx.de>
Commit: Michael Albinus <michael.albinus@gmx.de>
Use debian:bookworm for tests on emba
* test/infra/Dockerfile.emba (emacs-base): Derive from debian:bookworm.
(emacs-eglot, emacs-tree-sitter): Derive from emacs-base.
(emacs-native-comp): Install libgccjit-12-dev.
---
test/infra/Dockerfile.emba | 26 ++++----------------------
1 file changed, 4 insertions(+), 22 deletions(-)
diff --git a/test/infra/Dockerfile.emba b/test/infra/Dockerfile.emba
index de32906212b..f5c79b91ba1 100644
--- a/test/infra/Dockerfile.emba
+++ b/test/infra/Dockerfile.emba
@@ -24,7 +24,7 @@
# Maintainer: Ted Zlatanov <tzz@lifelogs.com>
# URL: https://emba.gnu.org/emacs/emacs
-FROM debian:bullseye as emacs-base
+FROM debian:bookworm as emacs-base
RUN apt-get update && \
apt-get install -y --no-install-recommends -o=Dpkg::Use-Pty=0 \
@@ -60,16 +60,7 @@ RUN ./autogen.sh autoconf
RUN ./configure --with-file-notification=gfile
RUN make -j `nproc` bootstrap
-# Debian bullseye doesn't provide proper packages. So we use Debian
-# sid for this.
-FROM debian:sid as emacs-eglot
-
-# This corresponds to emacs-base.
-RUN apt-get update && \
- apt-get install -y --no-install-recommends -o=Dpkg::Use-Pty=0 \
- libc-dev gcc g++ make autoconf automake libncurses-dev gnutls-dev \
- libxml2-dev libdbus-1-dev libacl1-dev acl git texinfo gdb \
- && rm -rf /var/lib/apt/lists/*
+FROM emacs-base as emacs-eglot
# Install clangd, tsserver.
RUN apt-get update && \
@@ -112,16 +103,7 @@ RUN make -j `nproc` bootstrap
# --eval '(package-install (quote company))' \
# --eval '(package-install (quote yasnippet))'
-# Debian bullseye doesn't provide proper packages. So we use Debian
-# sid for this.
-FROM debian:sid as emacs-tree-sitter
-
-# This corresponds to emacs-base.
-RUN apt-get update && \
- apt-get install -y --no-install-recommends -o=Dpkg::Use-Pty=0 \
- libc-dev gcc g++ make autoconf automake libncurses-dev gnutls-dev \
- libxml2-dev libdbus-1-dev libacl1-dev acl git texinfo gdb \
- && rm -rf /var/lib/apt/lists/*
+FROM emacs-base as emacs-tree-sitter
# Install tree-sitter library.
RUN apt-get update && \
@@ -183,7 +165,7 @@ FROM emacs-base as emacs-native-comp
# The libgccjit version must correspond to the gcc version.
RUN apt-get update && \
apt-get install -y --no-install-recommends -o=Dpkg::Use-Pty=0 \
- libgccjit-10-dev zlib1g-dev \
+ libgccjit-12-dev zlib1g-dev \
&& rm -rf /var/lib/apt/lists/*
FROM emacs-native-comp as emacs-native-comp-speed0
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- master 6213ca44d43: Use debian:bookworm for tests on emba,
Michael Albinus <=