Skip to content

Commit 4a4718f

Browse files
authored
GH-49263: [Python][CI] Install rust compiler for libcst only on Debian 32 bits (#49265)
### Rationale for this change In order to automate docstrings and build type hints we require libcst. libcst does not provide wheels for Debian 32 and we have to build from source distribution. In order to build from sdist we require a rust compiler available. ### What changes are included in this PR? Install rust on Debian i386. ### Are these changes tested? Yes via archery ### Are there any user-facing changes? No * GitHub Issue: #49263 Authored-by: Raúl Cumplido <raulcumplido@gmail.com> Signed-off-by: Raúl Cumplido <raulcumplido@gmail.com>
1 parent c8e069d commit 4a4718f

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

ci/docker/debian-13-cpp.dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ RUN apt-get update -y -q && \
4242
apt-get update -y -q && \
4343
apt-get install -y -q --no-install-recommends \
4444
autoconf \
45+
cargo \
4546
ccache \
4647
clang-${llvm} \
4748
cmake \
@@ -86,6 +87,7 @@ RUN apt-get update -y -q && \
8687
python3-venv \
8788
rapidjson-dev \
8889
rsync \
90+
rustc \
8991
tzdata \
9092
tzdata-legacy \
9193
zlib1g-dev && \

0 commit comments

Comments
 (0)