mirror of
https://github.com/rust-lang/rust.git
synced 2025-12-05 19:01:59 +00:00
This commit adds a new builder on CI for running tests in Intel's own emulator and also adds an assertion that on this emulator no tests are skipped due to missing CPU features by accident. Closes #92
14 lines
389 B
Docker
14 lines
389 B
Docker
FROM ubuntu:17.04
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
gcc \
|
|
libc6-dev \
|
|
file \
|
|
make \
|
|
ca-certificates \
|
|
curl \
|
|
bzip2
|
|
|
|
RUN curl https://s3-us-west-1.amazonaws.com/rust-lang-ci2/rust-ci-mirror/sde-external-8.9.0-2017-08-06-lin.tar.bz2 | \
|
|
tar xjf -
|
|
ENV CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUNNER="/sde-external-8.9.0-2017-08-06-lin/sde64 --"
|