[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [XEN PATCH 2/2] automation: Check if ninja is available before building QEMU
- To: Anthony PERARD <anthony.perard@xxxxxxxxxx>, <xen-devel@xxxxxxxxxxxxxxxxxxxx>
- From: Andrew Cooper <andrew.cooper3@xxxxxxxxxx>
- Date: Wed, 7 Jul 2021 18:46:03 +0100
- Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass smtp.mailfrom=citrix.com; dmarc=pass action=none header.from=citrix.com; dkim=pass header.d=citrix.com; arc=none
- Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector9901; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-SenderADCheck; bh=rLATigvkRbYi4kss/x6fuGy5EMt+6wsPiF87a9iagnc=; b=kyIOv/8+xf6pW+IFNJ3qrJPcXES70yikatRKz1MiUH1oQqJosJn0A9xkmBnbWxezBdM55hiTXVsk/rXJr3IvrSWbooOcvrdpxf2NoATRxLfUa4fAbGl1YABgejvJuhqKTrmK7YRbKNZFv7K/CVoZ514lQx+gztf7GF663jiSoxd+q9VscG30QlKArmHFSnbPzvQ0mOduflKMqenZH1Sp7riB7bQ0ZDKkrri7DNrpbk6yQj0TMKGaOqeVLonjDOgdtRZfNmahljqAwinEOpuDg1K9MZoDi16hFgcChejpBxuG5ktcIL5UWV2ZT/Yn1moQgA7G9TGqm7Rbe0Dp679Pzw==
- Arc-seal: i=1; a=rsa-sha256; s=arcselector9901; d=microsoft.com; cv=none; b=dk5WV6UvBFL3+UZBx6qVI1TXDP0PzdNpHMsOZncsm1fIUq+y7ys0eFflSZHsrT4MAEBh78xjRPZmX8Yq5YETQO8quSFXuNQVlDgSjhH7nH3mJufFXgL6GMsffIE4f+1C1LpjnMqwX14iNdZk6x6zciCRmKwQxQ46Uetk1194dm2fdvs6PZqElKYSREQn0BYE/Ila77HAqv+1oV+ymcnseBBeZJ7ITjAIl9STDzq644Ol1J8UoPJPeG/w9ohGwRYALXtv0HwU6XIo2WWiKPaiGAQ3bcfE1klqHo7udmd9BuuTHB7qmjZWdS9fvXg1ZKe5Ysdcd6lXrnfXd9Vr+Qtv/w==
- Authentication-results: esa1.hc3370-68.iphmx.com; dkim=pass (signature verified) header.i=@citrix.onmicrosoft.com
- Cc: Doug Goldstein <cardoe@xxxxxxxxxx>
- Delivery-date: Wed, 07 Jul 2021 17:46:29 +0000
- Ironport-hdrordr: A9a23:VdnjMqFaS0vSAbyKpLqEEseALOsnbusQ8zAXPiBKJCC9vPb5qy nOpoV+6faQslwssR4b9uxoVJPvfZq+z+8R3WByB8bAYOCOggLBQL2KhbGI/9SKIVydygcy78 Zdm6gVMqyMMbB55/yKnDVRxbwbsaa6GKPDv5ah8590JzsaDJ2Jd21Ce32m+ksdfnghObMJUK Cyy+BgvDSadXEefq2AdwM4t7iqnayzqHr+CyR2fyIa1A==
- Ironport-sdr: nYUjmyaNFKlAXpTtekfpxvhq0jLU7BoeEKKXBN9fZ77sz7qGgtZpDJKGI6IBh2ghTuz9QWrjW7 THCoix/FUCgMacgvCUEWm6NKcIQQsA1S5ezzVk5jl0zvc9Ehm+sLpTc0/3SDfeS/4Er8ZXv1qR EY4H2RlVX4cYXDLQA4kmTqxisG8Jh//vL1GiPz3aDeMJ3kIfE9JSc3rhGWJ4Jtfsx7KVzrf26Y PqDMe4rBFkzNxCUjtHq+SIcLxZNmpjrbVyAzjNMVq4lDbVWLqlWIUQwx4A0ybL6AEMXRK8NcxN Dv4=
- List-id: Xen developer discussion <xen-devel.lists.xenproject.org>
On 07/07/2021 17:40, Anthony PERARD wrote:
> ninja is now required to build the latest version of QEMU, some
> container still don't have ninja and attempting to add it breaks the
> build for different reasons, so QEMU will be skip on those containers.
>
> Failures:
> - ubuntu/xenial:
> fatal: ninja version (1.5.1) incompatible with build file
> ninja_required_version version (1.7.1).
> - debian/unstable-i386: (debian-unstable-32)
> /build/tools/flask/policy/Makefile.common:115: *** target pattern
> contains no '%'. Stop.
> - suse/opensuse-tumbleweed:
> failed to build iPXE
> - debian/unstable:
> update of the container fails with:
> The following packages have unmet dependencies:
> clang-8 : Depends: libstdc++-8-dev but it is not installable
> Depends: libgcc-8-dev but it is not installable
> Depends: libobjc-8-dev but it is not installable
> Recommends: llvm-8-dev but it is not going to be installed
> Recommends: libomp-8-dev but it is not going to be
> installed
Only the first failure seems to be related to ninja.
The second is a known bug which still needs addressing. Our build
system's logic to cope with `checkpolicy` being absent doesn't work.
Tumbleweed is generally broken and fails at ./configure due to missing
compression libraries. It is quite possible that the iPXE failure is
related.
The final one is probably because unstable has dropped clang-8. The
container hasn't been rebuilt in a while because we still haven't got
auto-rebuild sorted.
~Andrew
|