Skip to content

Commit 33088b9

Browse files
committed
ci: Add Dockerfile for dist-m68k-linux
1 parent 9d177f8 commit 33088b9

File tree

1 file changed

+26
-0
lines changed
  • src/ci/docker/host-x86_64/disabled/dist-m68k-linux

1 file changed

+26
-0
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
FROM ubuntu:20.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++-m68k-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=m68k-unknown-linux-gnu
24+
25+
ENV RUST_CONFIGURE_ARGS --host=$HOSTS --enable-extended
26+
ENV SCRIPT python3 ../x.py dist --host $HOSTS --target $HOSTS

0 commit comments

Comments
 (0)