@@ -494,3 +494,14 @@ kernel-5.9.9-arm64-export:
tags:
- arm64
+qemu-system-aarch64-5.2.0-arm64-export:
+ stage: build
+ image: registry.gitlab.com/xen-project/xen/tests-artifacts/qemu-system-aarch64:5.2.0-arm64v8
+ script:
+ - mkdir binaries && cp /qemu-system-aarch64 binaries/qemu-system-aarch64
+ artifacts:
+ paths:
+ - binaries/qemu-system-aarch64
+ tags:
+ - arm64
+
@@ -33,6 +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
artifacts:
paths:
- smoke.serial
@@ -56,6 +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
artifacts:
paths:
- smoke.serial
In order to use the pre-built test-artifacts/qemu-system-aarch64 binary for our tests, first we need to import it into the pipeline. Let's do that the same way we did it for the kernel and Alpine Linux filesystem: by creating a special job for it. Signed-off-by: Stefano Stabellini <stefano.stabellini@xilinx.com> --- automation/gitlab-ci/build.yaml | 11 +++++++++++ automation/gitlab-ci/test.yaml | 2 ++ 2 files changed, 13 insertions(+)