summaryrefslogtreecommitdiff
path: root/ci
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2017-10-28 03:04:32 +0000
committerbors <bors@rust-lang.org>2017-10-28 03:04:32 +0000
commitc6abfc1f701e9c67515608627d09e03ed00ee0c8 (patch)
treecf6bfcc83fb4f2dd535aa99735980a9e580224de /ci
parent84d72c659d50346552fb4d18f8c5659b5c29e06f (diff)
parent56b3403fa5d912bd323dfd4c3af0f193796318e8 (diff)
downloadrust-libc-c6abfc1f701e9c67515608627d09e03ed00ee0c8.tar.gz
Auto merge of #821 - malbarbo:mips64el-test, r=alexcrichton
Add mips64el to CI
Diffstat (limited to 'ci')
-rw-r--r--ci/docker/mips64el-unknown-linux-gnuabi64/Dockerfile11
1 files changed, 11 insertions, 0 deletions
diff --git a/ci/docker/mips64el-unknown-linux-gnuabi64/Dockerfile b/ci/docker/mips64el-unknown-linux-gnuabi64/Dockerfile
new file mode 100644
index 0000000000..434c90819e
--- /dev/null
+++ b/ci/docker/mips64el-unknown-linux-gnuabi64/Dockerfile
@@ -0,0 +1,11 @@
+FROM ubuntu:17.10
+
+RUN apt-get update && apt-get install -y --no-install-recommends \
+ gcc libc6-dev qemu-user ca-certificates \
+ gcc-mips64el-linux-gnuabi64 libc6-dev-mips64el-cross \
+ qemu-system-mips64el
+
+ENV CARGO_TARGET_MIPS64EL_UNKNOWN_LINUX_GNUABI64_LINKER=mips64el-linux-gnuabi64-gcc \
+ CARGO_TARGET_MIPS64EL_UNKNOWN_LINUX_GNUABI64_RUNNER="qemu-mips64el -L /usr/mips64el-linux-gnuabi64" \
+ CC_mips64el_unknown_linux_gnuabi64=mips64el-linux-gnuabi64-gcc \
+ PATH=$PATH:/rust/bin