@@ -585,9 +585,9 @@ kernel-5.9.9-arm64-export:
tags:
- arm64
-qemu-system-aarch64-5.2.0-arm64-export:
+qemu-system-aarch64-6.0.0-arm64-export:
stage: build
- image: registry.gitlab.com/xen-project/xen/tests-artifacts/qemu-system-aarch64:5.2.0-arm64v8
+ image: registry.gitlab.com/xen-project/xen/tests-artifacts/qemu-system-aarch64:6.0.0-arm64v8
script:
- mkdir binaries && cp /qemu-system-aarch64 binaries/qemu-system-aarch64
artifacts:
@@ -596,3 +596,13 @@ qemu-system-aarch64-5.2.0-arm64-export:
tags:
- arm64
+qemu-system-aarch64-6.0.0-arm32-export:
+ stage: build
+ image: registry.gitlab.com/xen-project/xen/tests-artifacts/qemu-system-aarch64:6.0.0-arm64v8
+ script:
+ - mkdir binaries && cp /qemu-system-arm binaries/qemu-system-arm
+ artifacts:
+ paths:
+ - binaries/qemu-system-arm
+ tags:
+ - arm64
@@ -33,7 +33,7 @@ qemu-alpine-arm64-gcc:
- alpine-3.12-gcc-arm64
- alpine-3.12-arm64-rootfs-export
- kernel-5.9.9-arm64-export
- - qemu-system-aarch64-5.2.0-arm64-export
+ - qemu-system-aarch64-6.0.0-arm64-export
artifacts:
paths:
- smoke.serial
@@ -57,7 +57,7 @@ qemu-smoke-arm64-gcc:
dependencies:
- debian-unstable-gcc-arm64
- kernel-5.9.9-arm64-export
- - qemu-system-aarch64-5.2.0-arm64-export
+ - qemu-system-aarch64-6.0.0-arm64-export
artifacts:
paths:
- smoke.serial
similarity index 95%
rename from automation/tests-artifacts/qemu-system-aarch64/5.2.0-arm64v8.dockerfile
rename to automation/tests-artifacts/qemu-system-aarch64/6.0.0-arm64v8.dockerfile
@@ -3,7 +3,7 @@ LABEL maintainer.name="The Xen Project" \
maintainer.email="xen-devel@lists.xenproject.org"
ENV DEBIAN_FRONTEND=noninteractive
-ENV QEMU_VERSION=5.2.0
+ENV QEMU_VERSION=6.0.0
ENV USER root
RUN mkdir /build
@@ -25,7 +25,7 @@ RUN apt-get update && \
tar xvJf qemu-"$QEMU_VERSION".tar.xz && \
cd qemu-"$QEMU_VERSION" && \
./configure \
- --target-list=aarch64-softmmu \
+ --target-list=arm-softmmu,aarch64-softmmu \
--enable-system \
--disable-blobs \
--disable-bsd-user \
@@ -68,6 +68,7 @@ RUN apt-get update && \
&& \
make -j$(nproc) && \
cp ./build/qemu-system-aarch64 / && \
+ cp ./build/qemu-system-arm / && \
cd /build && \
rm -rf qemu-"$QEMU_VERSION"* && \
apt-get autoremove -y && \
Add qemu-system-arm to the existing test-artifacts qemu container (which doesn't get build for every iteration but only updated once in a while.) With qemu-system-arm available, we'll be able to run ARM32 tests. This patch also bumps the QEMU version to v6.0.0 for both arm32 and arm64 (the test-artifacts container is one, shared for both). Signed-off-by: Stefano Stabellini <stefano.stabellini@xilinx.com> --- automation/gitlab-ci/build.yaml | 14 ++++++++++++-- automation/gitlab-ci/test.yaml | 4 ++-- ...arm64v8.dockerfile => 6.0.0-arm64v8.dockerfile} | 5 +++-- 3 files changed, 17 insertions(+), 6 deletions(-) rename automation/tests-artifacts/qemu-system-aarch64/{5.2.0-arm64v8.dockerfile => 6.0.0-arm64v8.dockerfile} (95%)