File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
src/ci/docker/host-x86_64/dist-x86_64-illumos Expand file tree Collapse file tree 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
66COPY scripts/cross-apt-packages.sh /tmp/
77RUN bash /tmp/cross-apt-packages.sh
88
9- # Required for cross-build gcc
9+ # Required for cross-build gcc, and we install python2 to test general compatibility.
1010RUN apt-get update && \
1111 apt-get install -y --no-install-recommends \
1212 libgmp-dev \
1313 libmpfr-dev \
1414 libmpc-dev \
15+ python2.7 \
1516 && rm -rf /var/lib/apt/lists/*
1617
1718COPY scripts/illumos-toolchain.sh /tmp/
3536ENV HOSTS=x86_64-unknown-illumos
3637
3738ENV 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