Skip to content

Commit

Permalink
Rollup merge of rust-lang#50685 - glaubitz:sparc64-linux, r=alexcrichton
Browse files Browse the repository at this point in the history
ci: Add Dockerfile for dist-sparc64-linux

This addresses rust-lang#47903.
  • Loading branch information
GuillaumeGomez authored May 15, 2018
2 parents 934e37a + df2bbf7 commit eb83606
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions src/ci/docker/disabled/dist-sparc64-linux/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
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++-sparc64-linux-gnu \
libssl-dev \
pkg-config


COPY scripts/sccache.sh /scripts/
RUN sh /scripts/sccache.sh

ENV HOSTS=sparc64-unknown-linux-gnu

ENV RUST_CONFIGURE_ARGS --enable-extended --disable-docs
ENV SCRIPT python2.7 ../x.py dist --host $HOSTS --target $HOSTS

0 comments on commit eb83606

Please sign in to comment.