Now that mozilla/sccache#43 is fixed the caching works for MinGW on Windows. We still can't use it for MSVC just yet, but I'll try to revive that branch at some point.
34 lines
861 B
Docker
34 lines
861 B
Docker
FROM ubuntu:16.04
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
g++ \
|
|
make \
|
|
file \
|
|
curl \
|
|
ca-certificates \
|
|
python2.7 \
|
|
git \
|
|
cmake \
|
|
sudo \
|
|
gdb \
|
|
xz-utils \
|
|
g++-mips-linux-gnu \
|
|
g++-mipsel-linux-gnu \
|
|
libssl-dev \
|
|
pkg-config
|
|
|
|
RUN curl -o /usr/local/bin/sccache \
|
|
https://s3.amazonaws.com/rust-lang-ci/rust-ci-mirror/2017-02-25-sccache-x86_64-unknown-linux-musl && \
|
|
chmod +x /usr/local/bin/sccache
|
|
|
|
RUN curl -OL https://github.com/Yelp/dumb-init/releases/download/v1.2.0/dumb-init_1.2.0_amd64.deb && \
|
|
dpkg -i dumb-init_*.deb && \
|
|
rm dumb-init_*.deb
|
|
ENTRYPOINT ["/usr/bin/dumb-init", "--"]
|
|
|
|
ENV HOSTS=mips-unknown-linux-gnu
|
|
ENV HOSTS=$HOSTS,mipsel-unknown-linux-gnu
|
|
|
|
ENV RUST_CONFIGURE_ARGS --host=$HOSTS --enable-extended
|
|
ENV SCRIPT python2.7 ../x.py dist --host $HOSTS --target $HOSTS
|