43e019dfc4
notable changes in the docker-based testing infrastructure - the docker containers can now modify $CARGO_HOME, to re-use the outer Cargo registry, and the target directory to re-use build artifacts. - the docker containers are removed when their execution finishes because it's no longer necessary to re-start them to inspect them because all the interesting output is in the outer target directory
8 lines
351 B
Docker
8 lines
351 B
Docker
FROM ubuntu:16.04
|
|
RUN apt-get update
|
|
RUN apt-get install -y --no-install-recommends \
|
|
ca-certificates curl gcc gcc-arm-none-eabi libc6-dev libcurl4-openssl-dev libssh2-1 libnewlib-dev
|
|
ENV AR_thumbv7em_none_eabihf=arm-none-eabi-ar \
|
|
CARGO_TARGET_THUMBV7EM_NONE_EABIHF_LINKER=arm-none-eabi-gcc \
|
|
CC_thumbv7em_none_eabihf=arm-none-eabi-gcc \
|