Skip to content

Commit

Permalink
tests/docker: set DEF_TARGET_LIST for some containers
Browse files Browse the repository at this point in the history
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: Alex Bennée <alex.bennee@linaro.org>
  • Loading branch information
stsquad committed Sep 10, 2019
1 parent 6945018 commit 09bb808
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions tests/docker/dockerfiles/debian-arm64-cross.docker
Expand Up @@ -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 \
Expand Down
1 change: 1 addition & 0 deletions tests/docker/dockerfiles/debian-armel-cross.docker
Expand Up @@ -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 \
Expand Down
1 change: 1 addition & 0 deletions tests/docker/dockerfiles/debian-armhf-cross.docker
Expand Up @@ -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 \
Expand Down
1 change: 1 addition & 0 deletions tests/docker/dockerfiles/debian-mips-cross.docker
Expand Up @@ -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 && \
Expand Down
1 change: 1 addition & 0 deletions tests/docker/dockerfiles/debian-mips64el-cross.docker
Expand Up @@ -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 && \
Expand Down
1 change: 1 addition & 0 deletions tests/docker/dockerfiles/debian-ppc64el-cross.docker
Expand Up @@ -16,6 +16,7 @@ RUN apt update && \

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

# Install extra libraries to increase code coverage
RUN apt update && \
Expand Down
1 change: 1 addition & 0 deletions tests/docker/dockerfiles/debian-s390x-cross.docker
Expand Up @@ -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=s390x-linux-gnu-
ENV DEF_TARGET_LIST s390x-softmmu,s390x-linux-user

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

0 comments on commit 09bb808

Please sign in to comment.