Skip to content

Commit df2bbf7

Browse files
committedMay 14, 2018
ci: Add Dockerfile for dist-sparc64-linux
1 parent 935a2f1 commit df2bbf7

File tree

1 file changed

+26
-0
lines changed
  • src/ci/docker/disabled/dist-sparc64-linux

1 file changed

+26
-0
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
FROM ubuntu:16.04
2+
3+
RUN apt-get update && apt-get install -y --no-install-recommends \
4+
g++ \
5+
make \
6+
file \
7+
curl \
8+
ca-certificates \
9+
python2.7 \
10+
git \
11+
cmake \
12+
sudo \
13+
gdb \
14+
xz-utils \
15+
g++-sparc64-linux-gnu \
16+
libssl-dev \
17+
pkg-config
18+
19+
20+
COPY scripts/sccache.sh /scripts/
21+
RUN sh /scripts/sccache.sh
22+
23+
ENV HOSTS=sparc64-unknown-linux-gnu
24+
25+
ENV RUST_CONFIGURE_ARGS --enable-extended --disable-docs
26+
ENV SCRIPT python2.7 ../x.py dist --host $HOSTS --target $HOSTS

0 commit comments

Comments
 (0)
Please sign in to comment.