Commit 09bb808f authored by Alex Bennée's avatar Alex Bennée
Browse files

tests/docker: set DEF_TARGET_LIST for some containers



You can assume the failures most people are interested in are the
cross-compile failures that are specific to the cross compile target.
Set DEF_TARGET_LIST based on what we use for shippable, the user can
always override by calling with TARGET_LIST set.

Signed-off-by: default avatarAlex Bennée <alex.bennee@linaro.org>
parent 6945018a
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -17,6 +17,7 @@ RUN apt update && \

# Specify the cross prefix for this image (see tests/docker/common.rc)
ENV QEMU_CONFIGURE_OPTS --cross-prefix=aarch64-linux-gnu-
ENV DEF_TARGET_LIST aarch64-softmmu,aarch64-linux-user

RUN apt update && \
    DEBIAN_FRONTEND=noninteractive eatmydata \
+1 −0
Original line number Diff line number Diff line
@@ -15,6 +15,7 @@ RUN dpkg --add-architecture armel && \

# Specify the cross prefix for this image (see tests/docker/common.rc)
ENV QEMU_CONFIGURE_OPTS --cross-prefix=arm-linux-gnueabi-
ENV DEF_TARGET_LIST arm-softmmu,arm-linux-user,armeb-linux-user

RUN apt update && \
    DEBIAN_FRONTEND=noninteractive eatmydata \
+1 −0
Original line number Diff line number Diff line
@@ -17,6 +17,7 @@ RUN apt update && \

# Specify the cross prefix for this image (see tests/docker/common.rc)
ENV QEMU_CONFIGURE_OPTS --cross-prefix=arm-linux-gnueabihf-
ENV DEF_TARGET_LIST arm-softmmu,arm-linux-user,armeb-linux-user

RUN apt update && \
    DEBIAN_FRONTEND=noninteractive eatmydata \
+1 −0
Original line number Diff line number Diff line
@@ -20,6 +20,7 @@ RUN apt update && \

# Specify the cross prefix for this image (see tests/docker/common.rc)
ENV QEMU_CONFIGURE_OPTS --cross-prefix=mips-linux-gnu-
ENV DEF_TARGET_LIST mips-softmmu,mipsel-linux-user

# Install extra libraries to increase code coverage
RUN apt update && \
+1 −0
Original line number Diff line number Diff line
@@ -21,6 +21,7 @@ RUN apt update && \

# Specify the cross prefix for this image (see tests/docker/common.rc)
ENV QEMU_CONFIGURE_OPTS --cross-prefix=mips64el-linux-gnuabi64-
ENV DEF_TARGET_LIST mips64el-softmmu,mips64el-linux-user

# Install extra libraries to increase code coverage
RUN apt update && \
Loading