]> git.lizzy.rs Git - rust.git/blob - src/ci/docker/host-x86_64/dist-armv7-linux/Dockerfile
Auto merge of #100207 - notriddle:notriddle/skipped-inline-module, r=Manishearth
[rust.git] / src / ci / docker / host-x86_64 / dist-armv7-linux / Dockerfile
1 FROM ubuntu:20.04
2
3 COPY scripts/cross-apt-packages.sh /scripts/
4 RUN sh /scripts/cross-apt-packages.sh
5
6 COPY scripts/crosstool-ng-1.24.sh /scripts/
7 RUN sh /scripts/crosstool-ng-1.24.sh
8
9 COPY scripts/rustbuild-setup.sh /scripts/
10 RUN sh /scripts/rustbuild-setup.sh
11 USER rustbuild
12 WORKDIR /tmp
13
14 COPY host-x86_64/dist-armv7-linux/build-toolchains.sh host-x86_64/dist-armv7-linux/armv7-linux-gnueabihf.config /tmp/
15 RUN ./build-toolchains.sh
16
17 USER root
18
19 COPY scripts/sccache.sh /scripts/
20 RUN sh /scripts/sccache.sh
21
22 ENV PATH=$PATH:/x-tools/armv7-unknown-linux-gnueabihf/bin
23
24 ENV CC_armv7_unknown_linux_gnueabihf=armv7-unknown-linux-gnueabihf-gcc \
25     AR_armv7_unknown_linux_gnueabihf=armv7-unknown-linux-gnueabihf-ar \
26     CXX_armv7_unknown_linux_gnueabihf=armv7-unknown-linux-gnueabihf-g++
27
28 ENV HOSTS=armv7-unknown-linux-gnueabihf
29
30 ENV RUST_CONFIGURE_ARGS --enable-full-tools --disable-docs
31 ENV SCRIPT python3 ../x.py dist --host $HOSTS --target $HOSTS