From 684771580dbe51b3af1d3b7b867ed9f627db85bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ra=C3=BAl=20Cumplido?= Date: Thu, 12 Feb 2026 18:18:56 +0100 Subject: [PATCH 1/2] GH-49263: [Python][CI] Install rust compiler for libcst only on Debian 32 bits as wheel is not provided --- ci/docker/debian-13-cpp.dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ci/docker/debian-13-cpp.dockerfile b/ci/docker/debian-13-cpp.dockerfile index fe947db025c..ec3162d203c 100644 --- a/ci/docker/debian-13-cpp.dockerfile +++ b/ci/docker/debian-13-cpp.dockerfile @@ -89,6 +89,9 @@ RUN apt-get update -y -q && \ tzdata \ tzdata-legacy \ zlib1g-dev && \ + if [ ${arch} = "i386" ]; then \ + apt-get install -y -q --no-install-recommends rustc cargo \ + fi && \ apt-get clean && \ rm -rf /var/lib/apt/lists/* From 05b3a6c1b2c425c973f9ba0ac8e3ef405c6cb1ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ra=C3=BAl=20Cumplido?= Date: Thu, 12 Feb 2026 18:27:32 +0100 Subject: [PATCH 2/2] Add missing semicolon --- ci/docker/debian-13-cpp.dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/docker/debian-13-cpp.dockerfile b/ci/docker/debian-13-cpp.dockerfile index ec3162d203c..e2413f64562 100644 --- a/ci/docker/debian-13-cpp.dockerfile +++ b/ci/docker/debian-13-cpp.dockerfile @@ -90,7 +90,7 @@ RUN apt-get update -y -q && \ tzdata-legacy \ zlib1g-dev && \ if [ ${arch} = "i386" ]; then \ - apt-get install -y -q --no-install-recommends rustc cargo \ + apt-get install -y -q --no-install-recommends rustc cargo; \ fi && \ apt-get clean && \ rm -rf /var/lib/apt/lists/*