We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3303615 commit 6fe2406Copy full SHA for 6fe2406
src/ci/docker/host-x86_64/dist-x86_64-illumos/Dockerfile
@@ -6,12 +6,13 @@ RUN sed -i 's/^# deb-src/deb-src/' /etc/apt/sources.list
6
COPY scripts/cross-apt-packages.sh /tmp/
7
RUN bash /tmp/cross-apt-packages.sh
8
9
-# Required for cross-build gcc
+# Required for cross-build gcc, and we install python2 to test general compatibility.
10
RUN apt-get update && \
11
apt-get install -y --no-install-recommends \
12
libgmp-dev \
13
libmpfr-dev \
14
libmpc-dev \
15
+ python2.7 \
16
&& rm -rf /var/lib/apt/lists/*
17
18
COPY scripts/illumos-toolchain.sh /tmp/
@@ -35,4 +36,4 @@ ENV \
35
36
ENV HOSTS=x86_64-unknown-illumos
37
38
ENV RUST_CONFIGURE_ARGS --enable-extended --disable-docs
-ENV SCRIPT python3 ../x.py dist --host $HOSTS --target $HOSTS
39
+ENV SCRIPT python2.7 ../x.py dist --host $HOSTS --target $HOSTS
0 commit comments