diff options
| author | John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de> | 2021-08-25 07:46:46 +0000 |
|---|---|---|
| committer | John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de> | 2021-09-17 15:07:13 +0000 |
| commit | 33088b9395ad6d29670f7ffbd0a48cd0af0939e2 (patch) | |
| tree | d2208b92bc4b477d35121f76d1e4766bc5fe5f03 | |
| parent | 9d177f89262ff2b50699bd31a5fb14e92cba7085 (diff) | |
| download | rust-33088b9395ad6d29670f7ffbd0a48cd0af0939e2.tar.gz rust-33088b9395ad6d29670f7ffbd0a48cd0af0939e2.zip | |
ci: Add Dockerfile for dist-m68k-linux
| -rw-r--r-- | src/ci/docker/host-x86_64/disabled/dist-m68k-linux/Dockerfile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/ci/docker/host-x86_64/disabled/dist-m68k-linux/Dockerfile b/src/ci/docker/host-x86_64/disabled/dist-m68k-linux/Dockerfile new file mode 100644 index 00000000000..17203994cdf --- /dev/null +++ b/src/ci/docker/host-x86_64/disabled/dist-m68k-linux/Dockerfile @@ -0,0 +1,26 @@ +FROM ubuntu:20.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++-m68k-linux-gnu \ + libssl-dev \ + pkg-config + + +COPY scripts/sccache.sh /scripts/ +RUN sh /scripts/sccache.sh + +ENV HOSTS=m68k-unknown-linux-gnu + +ENV RUST_CONFIGURE_ARGS --host=$HOSTS --enable-extended +ENV SCRIPT python3 ../x.py dist --host $HOSTS --target $HOSTS |
