File tree 1 file changed +3
-2
lines changed
src/ci/docker/host-x86_64/dist-x86_64-illumos
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -6,12 +6,13 @@ RUN sed -i 's/^# deb-src/deb-src/' /etc/apt/sources.list
6
6
COPY scripts/cross-apt-packages.sh /tmp/
7
7
RUN bash /tmp/cross-apt-packages.sh
8
8
9
- # Required for cross-build gcc
9
+ # Required for cross-build gcc, and we install python2 to test general compatibility.
10
10
RUN apt-get update && \
11
11
apt-get install -y --no-install-recommends \
12
12
libgmp-dev \
13
13
libmpfr-dev \
14
14
libmpc-dev \
15
+ python2.7 \
15
16
&& rm -rf /var/lib/apt/lists/*
16
17
17
18
COPY scripts/illumos-toolchain.sh /tmp/
35
36
ENV HOSTS=x86_64-unknown-illumos
36
37
37
38
ENV RUST_CONFIGURE_ARGS --enable-extended --disable-docs
38
- ENV SCRIPT python3 ../x.py dist --host $HOSTS --target $HOSTS
39
+ ENV SCRIPT python2.7 ../x.py dist --host $HOSTS --target $HOSTS
You can’t perform that action at this time.
0 commit comments