[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [PATCH v2 1/2] automation: Switch ppc64le tests to PowerNV machine type
On 9/6/23 7:41 PM, Stefano Stabellini wrote: > On Wed, 6 Sep 2023, Shawn Anastasio wrote: >> Run ppc64le tests with the PowerNV machine type (bare metal) instead of >> the paravirtualized pseries machine. This requires a more modern version >> of QEMU than is present in debian bullseye's repository, so update the >> dockerfile to build QEMU from source. >> >> Support for booting on pseries was broken by 74b725a64d80 ('xen/ppc: >> Implement initial Radix MMU support') which resulted in CI failures. In >> preparation for removing pseries support entirely, switch the CI >> infrastructure to the PowerNV machine type. >> >> Signed-off-by: Shawn Anastasio <sanastasio@xxxxxxxxxxxxxxxxxxxxx> >> --- >> .../build/debian/bullseye-ppc64le.dockerfile | 37 ++++++++++++++++++- >> automation/gitlab-ci/test.yaml | 2 +- >> 2 files changed, 36 insertions(+), 3 deletions(-) >> >> diff --git a/automation/build/debian/bullseye-ppc64le.dockerfile >> b/automation/build/debian/bullseye-ppc64le.dockerfile >> index 8fad26e903..15827bbcf4 100644 >> --- a/automation/build/debian/bullseye-ppc64le.dockerfile >> +++ b/automation/build/debian/bullseye-ppc64le.dockerfile >> @@ -1,4 +1,36 @@ >> +FROM debian:bullseye-slim AS builder >> + >> +ENV DEBIAN_FRONTEND=noninteractive >> +ENV QEMU_TAG=stable-8.1 >> +ENV USER root >> + >> +# dependencies for qemu build >> +RUN apt-get update && \ >> + apt-get --quiet --yes install \ >> + git \ >> + build-essential \ >> + python3-minimal \ >> + python3-elementpath \ >> + python3-pip \ >> + ninja-build \ >> + libglib2.0-dev \ >> + libpixman-1-dev >> + >> +RUN mkdir /build >> +WORKDIR /build >> + >> +# QEMU build from git >> +RUN git clone --depth 1 --branch "${QEMU_TAG}" https://github.com/qemu/qemu >> && \ >> + mkdir qemu/build && \ >> + cd qemu/build && \ >> + ../configure --target-list=ppc64-softmmu && \ >> + ninja && \ >> + ninja install > > It is totally find to build your QEMU but please use a test-artifact > instead, see automation/tests-artifacts/qemu-system-aarch64/ and > qemu-system-aarch64-6.0.0-arm64-export as an example. Thanks for letting me know -- I've submitted a v3 that uses this technique to build the QEMU binary based on the aarch64 example you provided. Shawn
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |