From nobody Sun May 5 03:15:08 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass(p=none dis=none) header.from=redhat.com ARC-Seal: i=1; a=rsa-sha256; t=1569940126; cv=none; d=zoho.com; s=zohoarc; b=lXh11N/Sj/g//SVE4GUh3OJYCwExMYMlX6zV0HgZVo5kkInZnklIsiHy8DeQhBIxD6qGxMCgjnGaNBsNI9CE5N7k1jkT+eJhJ+lfaR9k9P0E0ydhvpCnWp1vQwrEEQtqFF/0HO0SDipOMdfGCDyAv4ouj61Vr4VOFuCQKDVU21Y= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1569940126; h=Content-Type:Content-Transfer-Encoding:Cc:Date:From:In-Reply-To:List-Subscribe:List-Post:List-Id:List-Archive:List-Help:List-Unsubscribe:MIME-Version:Message-ID:References:Sender:Subject:To:ARC-Authentication-Results; bh=X8uJVUOC5+9Wsn8Fu36AgfO59Qx9jgUKOeZO/Ke6IpQ=; b=CTjm+j97UT7UOo5Rir1ptC5HawZy+ILlzZwZE6ta0/NAObsAVe8ivvW/Y/pgWtZGojY9cyYYT4nDRynAE9f7Ws/XnToPNVQQpeB4jy5GR2W0fzHZ263yyKE6h8i2PRmw4SX8tc7ZVaxUqEDTIpx0E5DxfQN1LnvFE5/VgyLzhR4= ARC-Authentication-Results: i=1; mx.zoho.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass header.from= (p=none dis=none) header.from= Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 1569940126602987.691313737589; Tue, 1 Oct 2019 07:28:46 -0700 (PDT) Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id CF0E1A44AFD; Tue, 1 Oct 2019 14:28:44 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.20]) by smtp.corp.redhat.com (Postfix) with ESMTPS id A33A760E1C; Tue, 1 Oct 2019 14:28:44 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id 62225180B761; Tue, 1 Oct 2019 14:28:44 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id x91ESeiI029445 for ; Tue, 1 Oct 2019 10:28:40 -0400 Received: by smtp.corp.redhat.com (Postfix) id B111E6012D; Tue, 1 Oct 2019 14:28:40 +0000 (UTC) Received: from laerte.brq.redhat.com (unknown [10.43.2.64]) by smtp.corp.redhat.com (Postfix) with ESMTP id DFAA060166; Tue, 1 Oct 2019 14:28:39 +0000 (UTC) From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= To: libvir-list@redhat.com Date: Tue, 1 Oct 2019 16:28:17 +0200 Message-Id: <20191001142833.314631-2-fidencio@redhat.com> In-Reply-To: <20191001142833.314631-1-fidencio@redhat.com> References: <20191001142833.314631-1-fidencio@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 X-loop: libvir-list@redhat.com Cc: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= , abologna@redhat.com Subject: [libvirt] [jenkins-ci PATCH 01/17] guests: Deal with multilib path X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.6.2 (mx1.redhat.com [10.5.110.68]); Tue, 01 Oct 2019 14:28:45 +0000 (UTC) When building a project using Meson, the project will be installed respecting the multi-library path. In order to get the right path we should do: - Debian based machines: - Use the value of `dpkg-architecture -q DEB_TARGET_MULTIARCH` - RPM based machines: - Use the value of `rpm --eval '%{_lib}'` Signed-off-by: Fabiano Fid=C3=AAncio --- guests/playbooks/update/templates/bashrc.j2 | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/guests/playbooks/update/templates/bashrc.j2 b/guests/playbooks= /update/templates/bashrc.j2 index 1f39cf2..794398c 100644 --- a/guests/playbooks/update/templates/bashrc.j2 +++ b/guests/playbooks/update/templates/bashrc.j2 @@ -14,6 +14,23 @@ export XDG_DATA_DIRS=3D"$VIRT_PREFIX/share:/usr/share:/u= sr/local/share" export GI_TYPELIB_PATH=3D"$VIRT_PREFIX/lib/girepository-1.0" export OSINFO_SYSTEM_DIR=3D"$VIRT_PREFIX/share/osinfo" =20 +# Add the multilib path to the LD_LIBRARY_PATH, PKG_CONFIG_PATH, and GI_TY= PELIB_PATH +# The multilib path can be discovered either using `dpkg-architecture` (on= Debian based +# machines) or by calling `rpm --eval '%{_lib}'` (on rpm based machines). + +package_format=3D"{{ package_format }}" +if test "$package_format" =3D "deb"; then + multilib=3D$(dpkg-architecture -q DEB_TARGET_MULTIARCH) + export LD_LIBRARY_PATH=3D"$VIRT_PREFIX/lib/$multilib:$LD_LIBRARY_PATH" + export PKG_CONFIG_PATH=3D"$VIRT_PREFIX/lib/$multilib/pkgconfig:$PKG_CO= NFIG_PATH" + export GI_TYPELIB_PATH=3D"$VIRT_PREFIX/lib/$multilib/girepository-1.0:= $GI_TYPELIB_PATH" +elif test "$package_format" =3D "rpm"; then + multilib=3D$(rpm --eval '%{_lib}') + export LD_LIBRARY_PATH=3D"$VIRT_PREFIX/$multilib:$LD_LIBRARY_PATH" + export PKG_CONFIG_PATH=3D"$VIRT_PREFIX/$multilib/pkgconfig:$PKG_CONFIG= _PATH" + export GI_TYPELIB_PATH=3D"$VIRT_PREFIX/$multilib/girepository-1.0:$GI_= TYPELIB_PATH" +fi + # We need to ask Perl for this information, since it's used to # construct installation paths plarch=3D$(perl -e 'use Config; print $Config{archname}') --=20 2.23.0 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list From nobody Sun May 5 03:15:08 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass(p=none dis=none) header.from=redhat.com ARC-Seal: i=1; a=rsa-sha256; t=1569940130; cv=none; d=zoho.com; s=zohoarc; b=gshe1Rqh+0y7zERk9IWEtsaXT7KEyk/oMh+1ThO/DczfZOD5kDLHy976i5NKFiKW5i2BFCsrGbNBMVsQWOCsp+L8hFIL5TtHfRtKAht/Aa918P9MaZfeWL9V2PEfVFhvY99zsHv6ZttLmaBrQwrqmn2Ht0gD9CUmW4Osf6+OBOc= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1569940130; h=Content-Type:Content-Transfer-Encoding:Cc:Date:From:In-Reply-To:List-Subscribe:List-Post:List-Id:List-Archive:List-Help:List-Unsubscribe:MIME-Version:Message-ID:References:Sender:Subject:To:ARC-Authentication-Results; bh=ciEE4Q/fVUp80DWFFly6Mg50tjhPjjcOHIaMbs7yPbU=; b=kcLgK9PO+oFNvPtvrr2+a09Bk7U2yVy7f3KKZIxJftlvn7j7ss4HkLVJqNwCEtG67+yqOmTOHrVU65TPyRoDPmdFx6y7nFoHPXomv/nopkbN2M+AtfYmjxQ3E/GntfDD5ZgRVhHZPAAINrmK0xDI3oD3Gm1Sedmv/RD/3oTRXcc= ARC-Authentication-Results: i=1; mx.zoho.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass header.from= (p=none dis=none) header.from= Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 1569940130424709.5823532802872; Tue, 1 Oct 2019 07:28:50 -0700 (PDT) Received: from smtp.corp.redhat.com (int-mx08.intmail.prod.int.phx2.redhat.com [10.5.11.23]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 0183810DCC9B; Tue, 1 Oct 2019 14:28:49 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.21]) by smtp.corp.redhat.com (Postfix) with ESMTPS id CD7DB26335; Tue, 1 Oct 2019 14:28:48 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id 3FCD783548; Tue, 1 Oct 2019 14:28:48 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id x91ESfGa029457 for ; Tue, 1 Oct 2019 10:28:41 -0400 Received: by smtp.corp.redhat.com (Postfix) id CF7026012D; Tue, 1 Oct 2019 14:28:41 +0000 (UTC) Received: from laerte.brq.redhat.com (unknown [10.43.2.64]) by smtp.corp.redhat.com (Postfix) with ESMTP id 0945F60166; Tue, 1 Oct 2019 14:28:40 +0000 (UTC) From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= To: libvir-list@redhat.com Date: Tue, 1 Oct 2019 16:28:18 +0200 Message-Id: <20191001142833.314631-3-fidencio@redhat.com> In-Reply-To: <20191001142833.314631-1-fidencio@redhat.com> References: <20191001142833.314631-1-fidencio@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 X-loop: libvir-list@redhat.com Cc: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= , abologna@redhat.com Subject: [libvirt] [jenkins-ci PATCH 02/17] guests: CentOS7 provides python3 X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com X-Scanned-By: MIMEDefang 2.84 on 10.5.11.23 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.6.2 (mx1.redhat.com [10.5.110.64]); Tue, 01 Oct 2019 14:28:49 +0000 (UTC) As latest CentOS7 release includes python3, let's update python3 mapping. Signed-off-by: Fabiano Fid=C3=AAncio Reviewed-by: Andrea Bolognani --- guests/vars/mappings.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/guests/vars/mappings.yml b/guests/vars/mappings.yml index bc6ea69..88a8350 100644 --- a/guests/vars/mappings.yml +++ b/guests/vars/mappings.yml @@ -810,7 +810,6 @@ mappings: =20 python3: default: python3 - CentOS7: =20 python3-dbus: default: python3-dbus --=20 2.23.0 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list From nobody Sun May 5 03:15:08 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass(p=none dis=none) header.from=redhat.com ARC-Seal: i=1; a=rsa-sha256; t=1569940126; cv=none; d=zoho.com; s=zohoarc; b=VJth8ZzCWJEW2YV7llH07vtAllXCAba4CKrWhWLAZTPGY/bySLz2COJGLH3p2OFqwg3dD6Ks3XuLBkIDTKD0du8DLzixHWuTDIpYsLEb1YbGGKNQJEZ2btM7wJ8BjEyxtGZyr059wWzJTh34spLlgRMTcS59T03tBCqtHHlAlBI= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1569940126; h=Content-Type:Content-Transfer-Encoding:Cc:Date:From:In-Reply-To:List-Subscribe:List-Post:List-Id:List-Archive:List-Help:List-Unsubscribe:MIME-Version:Message-ID:References:Sender:Subject:To:ARC-Authentication-Results; bh=EGGiP932xojv1LxRgmbZxQE6rBCrS6p9N0qsJxtFUnE=; b=cjFnBfI634D9mculy10c6w++l7B8XsR/cPmO9l0L3cPRafzzcpStEFbr4GBYBvRGoMjlZdtjmjmmb2wBLbhxKJt5Jq40b5Flwtm6wRHUEa9pBJszOA66HSFzX4M6nhPxnVM35+t3MTBIwuwzSJcOBVsWAxotOr4r8oQ31hfJlqs= ARC-Authentication-Results: i=1; mx.zoho.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass header.from= (p=none dis=none) header.from= Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 1569940126886137.54984095167333; Tue, 1 Oct 2019 07:28:46 -0700 (PDT) Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 4E5C37BDAC; Tue, 1 Oct 2019 14:28:45 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.21]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 2B4BA5D9CC; Tue, 1 Oct 2019 14:28:45 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id DEE5B83545; Tue, 1 Oct 2019 14:28:44 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id x91ESgkR029468 for ; Tue, 1 Oct 2019 10:28:42 -0400 Received: by smtp.corp.redhat.com (Postfix) id EDCE16013A; Tue, 1 Oct 2019 14:28:42 +0000 (UTC) Received: from laerte.brq.redhat.com (unknown [10.43.2.64]) by smtp.corp.redhat.com (Postfix) with ESMTP id 27FA660166; Tue, 1 Oct 2019 14:28:41 +0000 (UTC) From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= To: libvir-list@redhat.com Date: Tue, 1 Oct 2019 16:28:19 +0200 Message-Id: <20191001142833.314631-4-fidencio@redhat.com> In-Reply-To: <20191001142833.314631-1-fidencio@redhat.com> References: <20191001142833.314631-1-fidencio@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 X-loop: libvir-list@redhat.com Cc: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= , abologna@redhat.com Subject: [libvirt] [jenkins-ci PATCH 03/17] guests: Install EPEL on CentOS7 X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com X-Scanned-By: MIMEDefang 2.79 on 10.5.11.14 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.26]); Tue, 01 Oct 2019 14:28:45 +0000 (UTC) EPEL will be needed in order to have both "ninja" and "python36-*" packages installed on CentOS7. Signed-off-by: Fabiano Fid=C3=AAncio --- guests/playbooks/update/tasks/base.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/guests/playbooks/update/tasks/base.yml b/guests/playbooks/upda= te/tasks/base.yml index e0efe5d..15ffc07 100644 --- a/guests/playbooks/update/tasks/base.yml +++ b/guests/playbooks/update/tasks/base.yml @@ -9,6 +9,13 @@ - os_name =3D=3D 'Fedora' - os_version =3D=3D 'Rawhide' =20 +- name: Enable EPEL + command: '{{ package_manager }} install epel-release -y' + args: + warn: no + when: + - os_name =3D=3D 'CentOS' + - name: Update installed packages package: name: '*' --=20 2.23.0 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list From nobody Sun May 5 03:15:08 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass(p=none dis=none) header.from=redhat.com ARC-Seal: i=1; a=rsa-sha256; t=1569940131; cv=none; d=zoho.com; s=zohoarc; b=kmbNyRTZy24SVJu4daORGgqRSQFhITCiIfy04n+MgebBrtg68WpOTkZAyiM2hyw9/XvhqOI0zzSCzzCmd3/lV8TtgkcRBktWzvlXy+XNE2K8Ov5/xvV/YrKhcYaxv9r/lnGJJoOL8/vbJR8zImNXD6raxgfkDcqLQVHA6MYKx7A= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1569940131; h=Content-Type:Content-Transfer-Encoding:Cc:Date:From:In-Reply-To:List-Subscribe:List-Post:List-Id:List-Archive:List-Help:List-Unsubscribe:MIME-Version:Message-ID:References:Sender:Subject:To:ARC-Authentication-Results; bh=/837BSJhrt/v0fETMsbBP16r+AkoA4UScVGDLAb4fXg=; b=fbsraYUY36oJRmxMuH2EkM7ts3AQqm7I+3DktAAtZLyRrREthfiGGYEJkYE1Ubhbqh6nQAaPq8fHrZr3Jbma8lL9+DXSXBxw6rcSu1FsZTlv28/vEUQQUS6ZCxY8KnSgrcHM+c6vT4Ul9pwTzkXl14XUqFlqofqxPe+1+GCXwRQ= ARC-Authentication-Results: i=1; mx.zoho.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass header.from= (p=none dis=none) header.from= Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 156994013121776.60978442517933; Tue, 1 Oct 2019 07:28:51 -0700 (PDT) Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 75328190C018; Tue, 1 Oct 2019 14:28:49 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.21]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 528605D9E2; Tue, 1 Oct 2019 14:28:49 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id 0DB2B8354C; Tue, 1 Oct 2019 14:28:49 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id x91ESigj029474 for ; Tue, 1 Oct 2019 10:28:44 -0400 Received: by smtp.corp.redhat.com (Postfix) id 177306013A; Tue, 1 Oct 2019 14:28:44 +0000 (UTC) Received: from laerte.brq.redhat.com (unknown [10.43.2.64]) by smtp.corp.redhat.com (Postfix) with ESMTP id 4686060166; Tue, 1 Oct 2019 14:28:43 +0000 (UTC) From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= To: libvir-list@redhat.com Date: Tue, 1 Oct 2019 16:28:20 +0200 Message-Id: <20191001142833.314631-5-fidencio@redhat.com> In-Reply-To: <20191001142833.314631-1-fidencio@redhat.com> References: <20191001142833.314631-1-fidencio@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 X-loop: libvir-list@redhat.com Cc: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= , abologna@redhat.com Subject: [libvirt] [jenkins-ci PATCH 04/17] guests: Map python36-* CentOS7 packages X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com X-Scanned-By: MIMEDefang 2.79 on 10.5.11.14 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.6.2 (mx1.redhat.com [10.5.110.70]); Tue, 01 Oct 2019 14:28:49 +0000 (UTC) Those are the python36-* packages which we depend on and are provided by EPEL repo*. *: https://dl.fedoraproject.org/pub/epel/7/x86_64/Packages/p/ Signed-off-by: Fabiano Fid=C3=AAncio --- guests/vars/mappings.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/guests/vars/mappings.yml b/guests/vars/mappings.yml index 88a8350..2825b3e 100644 --- a/guests/vars/mappings.yml +++ b/guests/vars/mappings.yml @@ -814,11 +814,12 @@ mappings: python3-dbus: default: python3-dbus FreeBSD: py36-dbus - CentOS7: + CentOS7: python36-dbus =20 python3-devel: deb: python3-dev pkg: python3 + CentOS7: python36-devel Fedora: python3-devel cross-policy-deb: foreign =20 @@ -826,7 +827,7 @@ mappings: deb: python3-gi pkg: py36-gobject3 rpm: python3-gobject - CentOS7: + CentOS7: python36-gobject =20 python3-libxml2: default: python3-libxml2 @@ -837,22 +838,22 @@ mappings: python3-lxml: default: python3-lxml FreeBSD: py36-lxml - CentOS7: + CentOS7: python36-lxml =20 python3-nose: default: python3-nose FreeBSD: py36-nose - CentOS7: + CentOS7: python36-nose =20 python3-pytest: default: python3-pytest FreeBSD: py36-pytest - CentOS7: + CentOS7: python36-pytest =20 python3-requests: default: python3-requests FreeBSD: py36-requests - CentOS7: + CentOS7: python36-requests =20 qemu-img: default: qemu-utils --=20 2.23.0 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list From nobody Sun May 5 03:15:08 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass(p=none dis=none) header.from=redhat.com ARC-Seal: i=1; a=rsa-sha256; t=1569940134; cv=none; d=zoho.com; s=zohoarc; b=hyN9Zw9z7nS2U1R94nfpWTaUPf0MqnqWuF3kWyTQkPNU4ACJX310+UdscRPaQLA2REhngtm5mmuVF7MXrS5VOsVzS5afhlQCiZvoX7g8k6rhiWcrqnXWIHz3nvGY2ohPauHR+5pdRy21jWc3fb0+1Nz/G0AWhyokf8OJvzQMA7Y= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1569940134; h=Content-Type:Content-Transfer-Encoding:Cc:Date:From:In-Reply-To:List-Subscribe:List-Post:List-Id:List-Archive:List-Help:List-Unsubscribe:MIME-Version:Message-ID:References:Sender:Subject:To:ARC-Authentication-Results; bh=lpwAd+k1ZE61LXjhTvYCR460ZxBJMyuO/i0LSJjo92I=; b=PnPuTNM4V17kADref+iEkVsRBYf51oNIE3wLlcZd1iKhheN1pZyTrtgLkElFSBYiAKKbJeHXcenYH/Zdlod4A49Z4ledRCmLq/s14AVMlMSJCQfNihoVBA/7nhyTz/w9dexpzcF6CXcuzH/2wof/e0oz1GjdEchDWt4VWpvPEtQ= ARC-Authentication-Results: i=1; mx.zoho.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass header.from= (p=none dis=none) header.from= Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 1569940134891471.504142493716; Tue, 1 Oct 2019 07:28:54 -0700 (PDT) Received: from smtp.corp.redhat.com (int-mx07.intmail.prod.int.phx2.redhat.com [10.5.11.22]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 4F44C1DCD; Tue, 1 Oct 2019 14:28:53 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.21]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 1F5051001B30; Tue, 1 Oct 2019 14:28:53 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id CB7A38354C; Tue, 1 Oct 2019 14:28:52 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id x91ESjIM029496 for ; Tue, 1 Oct 2019 10:28:45 -0400 Received: by smtp.corp.redhat.com (Postfix) id 368DD60464; Tue, 1 Oct 2019 14:28:45 +0000 (UTC) Received: from laerte.brq.redhat.com (unknown [10.43.2.64]) by smtp.corp.redhat.com (Postfix) with ESMTP id 63E6B60166; Tue, 1 Oct 2019 14:28:44 +0000 (UTC) From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= To: libvir-list@redhat.com Date: Tue, 1 Oct 2019 16:28:21 +0200 Message-Id: <20191001142833.314631-6-fidencio@redhat.com> In-Reply-To: <20191001142833.314631-1-fidencio@redhat.com> References: <20191001142833.314631-1-fidencio@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 X-loop: libvir-list@redhat.com Cc: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= , abologna@redhat.com Subject: [libvirt] [jenkins-ci PATCH 05/17] mappings: Mark the OSes where meson is not supported X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com X-Scanned-By: MIMEDefang 2.84 on 10.5.11.22 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.6.2 (mx1.redhat.com [10.5.110.71]); Tue, 01 Oct 2019 14:28:53 +0000 (UTC) Meson is not supported in the following OSes we support: - CentOS7: not packaged; - Debian9: packaged, but version is older than 0.49.0; - Ubuntu16: packaged, but version is older than 0.49.0; - Ubuntu18: packaged, but version is older than 0.49.0; Signed-off-by: Fabiano Fid=C3=AAncio --- guests/vars/mappings.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/guests/vars/mappings.yml b/guests/vars/mappings.yml index 2825b3e..8daa65c 100644 --- a/guests/vars/mappings.yml +++ b/guests/vars/mappings.yml @@ -450,6 +450,10 @@ mappings: =20 meson: default: meson + CentOS7: + Debian9: + Ubuntu16: + Ubuntu18: =20 mingw32-curl: Fedora: mingw32-curl --=20 2.23.0 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list From nobody Sun May 5 03:15:08 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass(p=none dis=none) header.from=redhat.com ARC-Seal: i=1; a=rsa-sha256; t=1569940134; cv=none; d=zoho.com; s=zohoarc; b=QmUOJBIYN8m2ehxf+CigP7wIhjP5s+vON7wkjtIG4ibtsRCnwbypckDLmkIg7d3QPIQ1z8jnRk2RqGFzLSIvGhw7oS3xoAKnwi22yqToNOt3dcSOP9W/oYhw7o4AlbC2jjQzpeCoScdHaRz/16nOdxPg8nQTwa7Scp6RFhqmcV4= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1569940134; h=Content-Type:Content-Transfer-Encoding:Cc:Date:From:In-Reply-To:List-Subscribe:List-Post:List-Id:List-Archive:List-Help:List-Unsubscribe:MIME-Version:Message-ID:References:Sender:Subject:To:ARC-Authentication-Results; bh=NiGc+3cKGrYGduXYglNtHUH3aXLkMfCzfOUs/OFudRA=; b=YMNF4YEkCjmi4rvXMfotMuAxsfW0r9Usmnx8blpQNe4NsIzex6zqTwgMKBO6DvRyx8npMvzlq9ikpX+bkcybllBJntttZkM/sjdqet4kGJHn+gNJpKwChBr5DEUCZzNF8tSCeAgRckNJTubAiijd85FYFOemsWNZuEacXhOWyAs= ARC-Authentication-Results: i=1; mx.zoho.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass header.from= (p=none dis=none) header.from= Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 1569940134250251.08306814922116; Tue, 1 Oct 2019 07:28:54 -0700 (PDT) Received: from smtp.corp.redhat.com (int-mx08.intmail.prod.int.phx2.redhat.com [10.5.11.23]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 8EE7EA44AFC; Tue, 1 Oct 2019 14:28:52 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.20]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 644BB261D1; Tue, 1 Oct 2019 14:28:52 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id 24AEE180BA9C; Tue, 1 Oct 2019 14:28:52 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id x91ESkke029507 for ; Tue, 1 Oct 2019 10:28:46 -0400 Received: by smtp.corp.redhat.com (Postfix) id 5498360166; Tue, 1 Oct 2019 14:28:46 +0000 (UTC) Received: from laerte.brq.redhat.com (unknown [10.43.2.64]) by smtp.corp.redhat.com (Postfix) with ESMTP id 829C96012D; Tue, 1 Oct 2019 14:28:45 +0000 (UTC) From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= To: libvir-list@redhat.com Date: Tue, 1 Oct 2019 16:28:22 +0200 Message-Id: <20191001142833.314631-7-fidencio@redhat.com> In-Reply-To: <20191001142833.314631-1-fidencio@redhat.com> References: <20191001142833.314631-1-fidencio@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 X-loop: libvir-list@redhat.com Cc: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= , abologna@redhat.com Subject: [libvirt] [jenkins-ci PATCH 06/17] guests: Add meson to the base project X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com X-Scanned-By: MIMEDefang 2.84 on 10.5.11.23 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.6.2 (mx1.redhat.com [10.5.110.68]); Tue, 01 Oct 2019 14:28:53 +0000 (UTC) Together with this change, let's also remove meson as a dependency from the projects which are already depending on it. Signed-off-by: Fabiano Fid=C3=AAncio Reviewed-by: Andrea Bolognani --- guests/vars/projects/base.yml | 1 + guests/vars/projects/libosinfo+mingw32.yml | 1 - guests/vars/projects/libosinfo+mingw64.yml | 1 - guests/vars/projects/libosinfo.yml | 1 - guests/vars/projects/osinfo-db-tools+mingw32.yml | 1 - guests/vars/projects/osinfo-db-tools+mingw64.yml | 1 - guests/vars/projects/osinfo-db-tools.yml | 1 - 7 files changed, 1 insertion(+), 6 deletions(-) diff --git a/guests/vars/projects/base.yml b/guests/vars/projects/base.yml index 2a84029..be24e06 100644 --- a/guests/vars/projects/base.yml +++ b/guests/vars/projects/base.yml @@ -18,6 +18,7 @@ packages: - libtoolize - locales - lsof + - meson - net-tools - make - patch diff --git a/guests/vars/projects/libosinfo+mingw32.yml b/guests/vars/proje= cts/libosinfo+mingw32.yml index 107ab20..5884a09 100644 --- a/guests/vars/projects/libosinfo+mingw32.yml +++ b/guests/vars/projects/libosinfo+mingw32.yml @@ -1,6 +1,5 @@ --- packages: - - meson - mingw32-glib2 - mingw32-libsoup - mingw32-libxml2 diff --git a/guests/vars/projects/libosinfo+mingw64.yml b/guests/vars/proje= cts/libosinfo+mingw64.yml index 8ef9b4a..182c784 100644 --- a/guests/vars/projects/libosinfo+mingw64.yml +++ b/guests/vars/projects/libosinfo+mingw64.yml @@ -1,6 +1,5 @@ --- packages: - - meson - mingw64-glib2 - mingw64-libsoup - mingw64-libxml2 diff --git a/guests/vars/projects/libosinfo.yml b/guests/vars/projects/libo= sinfo.yml index c93b15e..dba691c 100644 --- a/guests/vars/projects/libosinfo.yml +++ b/guests/vars/projects/libosinfo.yml @@ -7,7 +7,6 @@ packages: - libsoup - libxml2 - libxslt - - meson - pci-ids - usb-ids - vala diff --git a/guests/vars/projects/osinfo-db-tools+mingw32.yml b/guests/vars= /projects/osinfo-db-tools+mingw32.yml index d10f966..0952d09 100644 --- a/guests/vars/projects/osinfo-db-tools+mingw32.yml +++ b/guests/vars/projects/osinfo-db-tools+mingw32.yml @@ -1,6 +1,5 @@ --- packages: - - meson - mingw32-glib2 - mingw32-json-glib - mingw32-libarchive diff --git a/guests/vars/projects/osinfo-db-tools+mingw64.yml b/guests/vars= /projects/osinfo-db-tools+mingw64.yml index 42dad20..5f099f0 100644 --- a/guests/vars/projects/osinfo-db-tools+mingw64.yml +++ b/guests/vars/projects/osinfo-db-tools+mingw64.yml @@ -1,6 +1,5 @@ --- packages: - - meson - mingw64-glib2 - mingw64-json-glib - mingw64-libarchive diff --git a/guests/vars/projects/osinfo-db-tools.yml b/guests/vars/project= s/osinfo-db-tools.yml index 6b3707a..ad38a1f 100644 --- a/guests/vars/projects/osinfo-db-tools.yml +++ b/guests/vars/projects/osinfo-db-tools.yml @@ -6,7 +6,6 @@ packages: - libsoup - libxml2 - libxslt - - meson - python3 - python3-pytest - python3-requests --=20 2.23.0 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list From nobody Sun May 5 03:15:08 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass(p=none dis=none) header.from=redhat.com ARC-Seal: i=1; a=rsa-sha256; t=1569940139; cv=none; d=zoho.com; s=zohoarc; b=cLWBSGz2w4H8GnAt8aJVl2H6yzYOcD1vzx6GvkbmZ0uTkgv4XwBeuo6Rp7oUtmDGzGe2GCswV/GNUst3sVFZVR06lktujpMCPQMRW/H5V05FV2bH3/3vRnrtVXddDTEaiHJmrDre6wUvFsck+Td93HjknA7EYnJ7DLYlyiaG6n8= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1569940139; h=Content-Type:Content-Transfer-Encoding:Cc:Date:From:In-Reply-To:List-Subscribe:List-Post:List-Id:List-Archive:List-Help:List-Unsubscribe:MIME-Version:Message-ID:References:Sender:Subject:To:ARC-Authentication-Results; bh=R99pwKWXSWoYOzee6MBx6Mg1oTP04vTPlDuYhBLInOE=; b=cFKn73+aUQe4FjKrkWd79gkeacxHnJAMA4wNoCCfuJy4P5PMdsUZZE5Xf8u5uFJbR2ULL8bK+X+oTnhWEFd8wH28taZIEUtbRyrT8VMFVNZVKPXwKHF5DbnjYCt3doTWrCwjdetMYKewG/U76dIPSHn5+JLJtFrJ/1wR97veUoo= ARC-Authentication-Results: i=1; mx.zoho.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass header.from= (p=none dis=none) header.from= Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 1569940139564365.5440231457444; Tue, 1 Oct 2019 07:28:59 -0700 (PDT) Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 9A6F23086218; Tue, 1 Oct 2019 14:28:57 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.20]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 7152660BE0; Tue, 1 Oct 2019 14:28:57 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id 1CBE4180B780; Tue, 1 Oct 2019 14:28:57 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id x91ESlhQ029519 for ; Tue, 1 Oct 2019 10:28:47 -0400 Received: by smtp.corp.redhat.com (Postfix) id 7368E6013A; Tue, 1 Oct 2019 14:28:47 +0000 (UTC) Received: from laerte.brq.redhat.com (unknown [10.43.2.64]) by smtp.corp.redhat.com (Postfix) with ESMTP id A076760464; Tue, 1 Oct 2019 14:28:46 +0000 (UTC) From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= To: libvir-list@redhat.com Date: Tue, 1 Oct 2019 16:28:23 +0200 Message-Id: <20191001142833.314631-8-fidencio@redhat.com> In-Reply-To: <20191001142833.314631-1-fidencio@redhat.com> References: <20191001142833.314631-1-fidencio@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 X-loop: libvir-list@redhat.com Cc: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= , abologna@redhat.com Subject: [libvirt] [jenkins-ci PATCH 07/17] mappings: Add ninja X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.42]); Tue, 01 Oct 2019 14:28:58 +0000 (UTC) Although ninja is a meson dependency, some OSes do not have support to meson. Knowning that, let's explicitly add a "ninja" mapping so we get it installed even when "meson" is not supported. It'll help us, later on, when we install meson from pip. Signed-off-by: Fabiano Fid=C3=AAncio Reviewed-by: Andrea Bolognani --- guests/vars/mappings.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/guests/vars/mappings.yml b/guests/vars/mappings.yml index 8daa65c..10d0cb2 100644 --- a/guests/vars/mappings.yml +++ b/guests/vars/mappings.yml @@ -455,6 +455,10 @@ mappings: Ubuntu16: Ubuntu18: =20 + ninja: + default: ninja-build + FreeBSD: ninja + mingw32-curl: Fedora: mingw32-curl =20 --=20 2.23.0 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list From nobody Sun May 5 03:15:08 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass(p=none dis=none) header.from=redhat.com ARC-Seal: i=1; a=rsa-sha256; t=1569940132; cv=none; d=zoho.com; s=zohoarc; b=Es85PL34Nldiw0ZbiZpCBMQyWd9Tm2+maNvQ1iIUHAxYP2SN3I3gwzkO0mklKrlsUaa4qAgh2bN9sucjLyPe1I6tK9R4ClEM4Peu5v1aoYmn47/W3LCrACvZPT/vC1WYtnVIGNtxoq4k5wGZktL87ddbOhiqsvTcgIeOgWz96tQ= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1569940132; h=Content-Type:Content-Transfer-Encoding:Cc:Date:From:In-Reply-To:List-Subscribe:List-Post:List-Id:List-Archive:List-Help:List-Unsubscribe:MIME-Version:Message-ID:References:Sender:Subject:To:ARC-Authentication-Results; bh=4n0QfB81DjX9QEUiDFK1QLvFKwfRomY8Qto5+SF0JhA=; b=gjj9Rrgwa3S5UR3cJtTub2XryUQWvi+D6Ulfx/2S1rV+CLvuOkvscHeAbXPqeuvqSfFsg5biK+pEbini/RdyfqQyNTCQNmxP5u/wK9MK7nN0dsjnzRTQNgAnucEYre1NvBg7qFQ0EfggipBXwEkiqvLjdvqn2sc/fYh7u2gOeno= ARC-Authentication-Results: i=1; mx.zoho.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass header.from= (p=none dis=none) header.from= Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 1569940132508551.2683562839851; Tue, 1 Oct 2019 07:28:52 -0700 (PDT) Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.15]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id CB8E33090FD4; Tue, 1 Oct 2019 14:28:50 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.20]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 9F8945B681; Tue, 1 Oct 2019 14:28:50 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id 56283180BA98; Tue, 1 Oct 2019 14:28:50 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id x91ESmnv029535 for ; Tue, 1 Oct 2019 10:28:48 -0400 Received: by smtp.corp.redhat.com (Postfix) id 937F260166; Tue, 1 Oct 2019 14:28:48 +0000 (UTC) Received: from laerte.brq.redhat.com (unknown [10.43.2.64]) by smtp.corp.redhat.com (Postfix) with ESMTP id C0FD86012D; Tue, 1 Oct 2019 14:28:47 +0000 (UTC) From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= To: libvir-list@redhat.com Date: Tue, 1 Oct 2019 16:28:24 +0200 Message-Id: <20191001142833.314631-9-fidencio@redhat.com> In-Reply-To: <20191001142833.314631-1-fidencio@redhat.com> References: <20191001142833.314631-1-fidencio@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 X-loop: libvir-list@redhat.com Cc: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= , abologna@redhat.com Subject: [libvirt] [jenkins-ci PATCH 08/17] guests: Add ninja to the base project X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com X-Scanned-By: MIMEDefang 2.79 on 10.5.11.15 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.43]); Tue, 01 Oct 2019 14:28:51 +0000 (UTC) signed-off-by: Fabiano Fid=C3=AAncio Reviewed-by: Andrea Bolognani --- guests/vars/projects/base.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/guests/vars/projects/base.yml b/guests/vars/projects/base.yml index be24e06..b575079 100644 --- a/guests/vars/projects/base.yml +++ b/guests/vars/projects/base.yml @@ -20,6 +20,7 @@ packages: - lsof - meson - net-tools + - ninja - make - patch - perl --=20 2.23.0 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list From nobody Sun May 5 03:15:08 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass(p=none dis=none) header.from=redhat.com ARC-Seal: i=1; a=rsa-sha256; t=1569940138; cv=none; d=zoho.com; s=zohoarc; b=F5HyZfV/h5ukNC6HQJbLtnUqAGsqBs7k7Bq7FO63G8FBoYb6dtSvSuPkmnJZSt8sC8btEdGOvqCz1Rj4BaA1zEjORxHnLJWPquxF7z2G3fu2eyHzQw4S+cHEIuJoZizWWEgZ0HWuf0cV07mT1P06W+5I/+6YCLM99eaqy4ULjlQ= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1569940138; h=Content-Type:Content-Transfer-Encoding:Cc:Date:From:In-Reply-To:List-Subscribe:List-Post:List-Id:List-Archive:List-Help:List-Unsubscribe:MIME-Version:Message-ID:References:Sender:Subject:To:ARC-Authentication-Results; bh=vzG38F53Cpaj49Eb7cvRkXoKaZ9K5cSj2DQQXZEu7js=; b=WMO4acHUYRcXk65hrGmfCF6cD9Ry2ShNihqGVENeOd81KBg9FUjSDmo2T0+ne1lfmsvDTUjauunlVWgbA8ZXm3thOYM+/tXLxnMfzOj793tL2n9Tr4gRgI5yjRnwPCqUtzyN0iI6tqQFumygu6zSKZCOTQMhPjdYAVxAYzi2f9g= ARC-Authentication-Results: i=1; mx.zoho.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass header.from= (p=none dis=none) header.from= Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 1569940138213409.2983207807288; Tue, 1 Oct 2019 07:28:58 -0700 (PDT) Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 5EC5E18CB903; Tue, 1 Oct 2019 14:28:56 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.21]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 2DE6F60F90; Tue, 1 Oct 2019 14:28:56 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id D0A8E8354E; Tue, 1 Oct 2019 14:28:55 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id x91ESnQi029551 for ; Tue, 1 Oct 2019 10:28:49 -0400 Received: by smtp.corp.redhat.com (Postfix) id AFB4360468; Tue, 1 Oct 2019 14:28:49 +0000 (UTC) Received: from laerte.brq.redhat.com (unknown [10.43.2.64]) by smtp.corp.redhat.com (Postfix) with ESMTP id DE1C060166; Tue, 1 Oct 2019 14:28:48 +0000 (UTC) From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= To: libvir-list@redhat.com Date: Tue, 1 Oct 2019 16:28:25 +0200 Message-Id: <20191001142833.314631-10-fidencio@redhat.com> In-Reply-To: <20191001142833.314631-1-fidencio@redhat.com> References: <20191001142833.314631-1-fidencio@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 X-loop: libvir-list@redhat.com Cc: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= , abologna@redhat.com Subject: [libvirt] [jenkins-ci PATCH 09/17] Deal with ninja x ninja-build bin names X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.6.2 (mx1.redhat.com [10.5.110.63]); Tue, 01 Oct 2019 14:28:57 +0000 (UTC) Different OSes have a different name for ninja binary. In some of them, it's called "ninja", in others "ninja-build". Let's allow both in the very same way we already deal with make x gmake and start using a NINJA environmnet variable instead of always relying on "ninja". Signed-off-by: Fabiano Fid=C3=AAncio --- guests/playbooks/build/jobs/meson-build-job.yml | 4 ++-- guests/playbooks/build/jobs/meson-check-job.yml | 2 +- guests/playbooks/build/jobs/meson-rpm-job.yml | 2 +- guests/playbooks/update/tasks/paths.yml | 15 +++++++++++++++ guests/playbooks/update/templates/bashrc.j2 | 1 + jenkins/jobs/meson.yaml | 8 ++++---- 6 files changed, 24 insertions(+), 8 deletions(-) diff --git a/guests/playbooks/build/jobs/meson-build-job.yml b/guests/playb= ooks/build/jobs/meson-build-job.yml index ddb94b6..0f53680 100644 --- a/guests/playbooks/build/jobs/meson-build-job.yml +++ b/guests/playbooks/build/jobs/meson-build-job.yml @@ -10,7 +10,7 @@ mkdir build cd build meson .. . --prefix=3D$VIRT_PREFIX {{ meson_args }} - ninja - ninja install + $NINJA + $NINJA install when: - inventory_hostname in machines diff --git a/guests/playbooks/build/jobs/meson-check-job.yml b/guests/playb= ooks/build/jobs/meson-check-job.yml index cf7a740..ac89cb0 100644 --- a/guests/playbooks/build/jobs/meson-check-job.yml +++ b/guests/playbooks/build/jobs/meson-check-job.yml @@ -7,7 +7,7 @@ {{ global_env }} {{ local_env }} cd build - if ! ninja test + if ! $NINJA test then cat meson-logs/testlog.txt || true exit 1 diff --git a/guests/playbooks/build/jobs/meson-rpm-job.yml b/guests/playboo= ks/build/jobs/meson-rpm-job.yml index f517214..ed75dfc 100644 --- a/guests/playbooks/build/jobs/meson-rpm-job.yml +++ b/guests/playbooks/build/jobs/meson-rpm-job.yml @@ -9,7 +9,7 @@ cd build {{ strip_buildrequires }} rm -f meson-dist/*.tar.{{ archive_format }} - ninja dist + $NINJA dist rpmbuild --clean --define "_topdir `pwd`/rpmbuild" -ta meson-dist/*.ta= r.{{ archive_format }} when: - inventory_hostname in machines diff --git a/guests/playbooks/update/tasks/paths.yml b/guests/playbooks/upd= ate/tasks/paths.yml index 08717ba..9aa8840 100644 --- a/guests/playbooks/update/tasks/paths.yml +++ b/guests/playbooks/update/tasks/paths.yml @@ -12,6 +12,8 @@ - gmake - java - make + - ninja + - ninja-build - su =20 - name: 'Look for files' @@ -52,3 +54,16 @@ make: '{{ commands["make"] }}' when: - make is undefined + +# Prefer ninja-build, fall back to ninja +- name: 'Export paths' + set_fact: + ninja: '{{ commands["ninja-build"] }}' + when: + - commands["ninja-build"] !=3D '' + +- name: 'Export paths' + set_fact: + ninja: '{{ commands["ninja"] }}' + when: + - ninja is undefined diff --git a/guests/playbooks/update/templates/bashrc.j2 b/guests/playbooks= /update/templates/bashrc.j2 index 794398c..d286615 100644 --- a/guests/playbooks/update/templates/bashrc.j2 +++ b/guests/playbooks/update/templates/bashrc.j2 @@ -1,6 +1,7 @@ export PS1=3D"[\u@\h \w]\$ " =20 export MAKE=3D"{{ make }}" +export NINJA=3D"{{ ninja }}" export PYTHON=3D"{{ ansible_python_interpreter }}" =20 export MAKEFLAGS=3D"-j{{ install_vcpus|int + 1 }}" diff --git a/jenkins/jobs/meson.yaml b/jenkins/jobs/meson.yaml index 102d0a4..4d84978 100644 --- a/jenkins/jobs/meson.yaml +++ b/jenkins/jobs/meson.yaml @@ -45,8 +45,8 @@ mkdir build cd build meson .. . --prefix=3D$VIRT_PREFIX {meson_args} - ninja - ninja install + $NINJA + $NINJA install publishers: - email: recipients: '{obj:spam}' @@ -85,7 +85,7 @@ {global_env} {local_env} cd build - if ! ninja test + if ! $NINJA test then cat meson-logs/testlog.txt || true exit 1 @@ -130,7 +130,7 @@ cd build {strip_buildrequires} rm -f meson-dist/*.tar.{archive_format} - ninja dist + $NINJA dist rpmbuild --clean --define "_topdir `pwd`/rpmbuild" -ta meson-dis= t/*.tar.{archive_format} publishers: - email: --=20 2.23.0 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list From nobody Sun May 5 03:15:08 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass(p=none dis=none) header.from=redhat.com ARC-Seal: i=1; a=rsa-sha256; t=1569940142; cv=none; d=zoho.com; s=zohoarc; b=JIphgnA9/Bj8graqt6y9rF+j+nKqvr3m+2N5KJijqjKCfT9MMjlBOQtPCyHKo9M0Yqpq19b5ZADfkOQ9dBPDlsOVJTv5RGVfOjrNBJGMniq1eUY4ONdXxB1zM5ccCSauqIjRiS5vwQymxT9OapmMdYoGhEFWgXlSygk7ie8Hq2o= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1569940142; h=Content-Type:Content-Transfer-Encoding:Cc:Date:From:In-Reply-To:List-Subscribe:List-Post:List-Id:List-Archive:List-Help:List-Unsubscribe:MIME-Version:Message-ID:References:Sender:Subject:To:ARC-Authentication-Results; bh=mw7evDy+NH5jttyXa2ZfTcmviQFZVn7D5+/7OmyyeGI=; b=gvJg5l6f7Nd9wViWt395UtVeK1f/KQ66co4kVUssbOm1gzEbv/8lA/LUINUbqUEp8NuC1Yv8LiSua9mv1jrr3/7SNevacdvKrXr6zIVAT2DwjRYGrKAQG9dVTrrzaBgXakClmh09pfn5B9bEXxPdUk0/SH4O30HXk699uRCbqV8= ARC-Authentication-Results: i=1; mx.zoho.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass header.from= (p=none dis=none) header.from= Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 1569940142024500.7233695072405; Tue, 1 Oct 2019 07:29:02 -0700 (PDT) Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 63118811D8; Tue, 1 Oct 2019 14:29:00 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.20]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 345F960F90; Tue, 1 Oct 2019 14:29:00 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id DE1D7180BAA0; Tue, 1 Oct 2019 14:28:59 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id x91ESoCL029562 for ; Tue, 1 Oct 2019 10:28:50 -0400 Received: by smtp.corp.redhat.com (Postfix) id CF1E760464; Tue, 1 Oct 2019 14:28:50 +0000 (UTC) Received: from laerte.brq.redhat.com (unknown [10.43.2.64]) by smtp.corp.redhat.com (Postfix) with ESMTP id 08BF56012D; Tue, 1 Oct 2019 14:28:49 +0000 (UTC) From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= To: libvir-list@redhat.com Date: Tue, 1 Oct 2019 16:28:26 +0200 Message-Id: <20191001142833.314631-11-fidencio@redhat.com> In-Reply-To: <20191001142833.314631-1-fidencio@redhat.com> References: <20191001142833.314631-1-fidencio@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 X-loop: libvir-list@redhat.com Cc: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= , abologna@redhat.com Subject: [libvirt] [jenkins-ci PATCH 10/17] guests: Keep base project's packages sorted X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.27]); Tue, 01 Oct 2019 14:29:00 +0000 (UTC) Signed-off-by: Fabiano Fid=C3=AAncio Reviewed-by: Andrea Bolognani --- guests/vars/projects/base.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guests/vars/projects/base.yml b/guests/vars/projects/base.yml index b575079..f008de3 100644 --- a/guests/vars/projects/base.yml +++ b/guests/vars/projects/base.yml @@ -18,10 +18,10 @@ packages: - libtoolize - locales - lsof + - make - meson - net-tools - ninja - - make - patch - perl - pkg-config --=20 2.23.0 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list From nobody Sun May 5 03:15:08 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass(p=none dis=none) header.from=redhat.com ARC-Seal: i=1; a=rsa-sha256; t=1569940143; cv=none; d=zoho.com; s=zohoarc; b=NlLFJCXL029QsUUZgt2VU6oj5FozLoBEo1N8Tp18cFrIQYZQWvWq6hCCtdJA0eETS0poToDNf7Gvan3r9yWU97IR1BkS0jCjuWHKWlojw+CSWFjEAxwubEWDTyMhQh/i0ev2MSPyRnW3qNdZi5GKID70kXY63zzCfyB0YB22tnY= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1569940143; h=Content-Type:Content-Transfer-Encoding:Cc:Date:From:In-Reply-To:List-Subscribe:List-Post:List-Id:List-Archive:List-Help:List-Unsubscribe:MIME-Version:Message-ID:References:Sender:Subject:To:ARC-Authentication-Results; bh=2lpHDsa4CGYKVkW+/Is1SOEIXhHRaCfkYL7XooCQwD8=; b=Jgm7No8IqIUDMVSBG+LM3F7grwEllFsg9weTG6VDSEDwDTAROYyhUo18Yjr8lS2p7mgWIObyl/SUkxnuP1xk96odfGWd5oTjMNzCGFarjx8/GURQb+W/6bOasw3gzfwkHqcZ7Z1fhisrArvEfoDP5ag1ohpkUpzSEnxVBRnwJzQ= ARC-Authentication-Results: i=1; mx.zoho.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass header.from= (p=none dis=none) header.from= Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 1569940143961502.5723195289172; Tue, 1 Oct 2019 07:29:03 -0700 (PDT) Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 3A40D18CB904; Tue, 1 Oct 2019 14:29:02 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.21]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 066835D9D5; Tue, 1 Oct 2019 14:29:02 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id 9B2D183550; Tue, 1 Oct 2019 14:29:01 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id x91ESpwv029572 for ; Tue, 1 Oct 2019 10:28:52 -0400 Received: by smtp.corp.redhat.com (Postfix) id EF0606012D; Tue, 1 Oct 2019 14:28:51 +0000 (UTC) Received: from laerte.brq.redhat.com (unknown [10.43.2.64]) by smtp.corp.redhat.com (Postfix) with ESMTP id 27FAD60464; Tue, 1 Oct 2019 14:28:50 +0000 (UTC) From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= To: libvir-list@redhat.com Date: Tue, 1 Oct 2019 16:28:27 +0200 Message-Id: <20191001142833.314631-12-fidencio@redhat.com> In-Reply-To: <20191001142833.314631-1-fidencio@redhat.com> References: <20191001142833.314631-1-fidencio@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 X-loop: libvir-list@redhat.com Cc: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= , abologna@redhat.com Subject: [libvirt] [jenkins-ci PATCH 11/17] mappings: Add python3-pip X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com X-Scanned-By: MIMEDefang 2.79 on 10.5.11.14 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.6.2 (mx1.redhat.com [10.5.110.63]); Tue, 01 Oct 2019 14:29:02 +0000 (UTC) pip will be used to install meson on OSes which do not have support to the minimum required version of the project. Signed-off-by: Fabiano Fid=C3=AAncio --- guests/vars/mappings.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/guests/vars/mappings.yml b/guests/vars/mappings.yml index 10d0cb2..d6fc540 100644 --- a/guests/vars/mappings.yml +++ b/guests/vars/mappings.yml @@ -787,6 +787,11 @@ mappings: rpm: perl-generators CentOS7: =20 + pip: + CentOS7: python3-pip + Debian9: python3-pip + Ubuntu: python3-pip + pkg-config: default: pkgconf rpm: pkgconfig --=20 2.23.0 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list From nobody Sun May 5 03:15:08 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass(p=none dis=none) header.from=redhat.com ARC-Seal: i=1; a=rsa-sha256; t=1569940148; cv=none; d=zoho.com; s=zohoarc; b=AkvQPyrc/KW16daF/Jv+ZpYMCK8ejLiSrV/EDCg0wv19V5JRs0SbkmFTQMzST58kp7fES7ikEO4bH1I09lvCcIUA12Z7citdzWTCXtjmIqLa4ZXUL4JB7blgpYyPhB0GLPmadM+enff5sAGbUdP50kjD4PeP8qvMPvpWrAE3zQs= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1569940148; h=Content-Type:Content-Transfer-Encoding:Cc:Date:From:In-Reply-To:List-Subscribe:List-Post:List-Id:List-Archive:List-Help:List-Unsubscribe:MIME-Version:Message-ID:References:Sender:Subject:To:ARC-Authentication-Results; bh=SLeNpWFjpeVP93Zx2V/+hxkwsHasIMwTb5/BkaQxadY=; b=YXHqWOrVrTlPluLkgyMBOej38ikqWwqZJPZI0neMG79SoJGigOyEzKd+Tn7q10lqKI7v///XDrXiJJIuXMshG/PmxFZtV8XljbErxLCjDWRVaBc9xcnPj8AJWn4tvFgNzJ9mdN0PUSBB3DshTYYyRVhkr6xNBPf4M46APVLCSxw= ARC-Authentication-Results: i=1; mx.zoho.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass header.from= (p=none dis=none) header.from= Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 1569940148331587.34375941332; Tue, 1 Oct 2019 07:29:08 -0700 (PDT) Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id B30973090FC6; Tue, 1 Oct 2019 14:29:06 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.21]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 84A5E60464; Tue, 1 Oct 2019 14:29:06 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id 37FED83554; Tue, 1 Oct 2019 14:29:06 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id x91ET4ox029669 for ; Tue, 1 Oct 2019 10:29:04 -0400 Received: by smtp.corp.redhat.com (Postfix) id 436006046B; Tue, 1 Oct 2019 14:29:04 +0000 (UTC) Received: from laerte.brq.redhat.com (unknown [10.43.2.64]) by smtp.corp.redhat.com (Postfix) with ESMTP id 55D2160466; Tue, 1 Oct 2019 14:28:52 +0000 (UTC) From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= To: libvir-list@redhat.com Date: Tue, 1 Oct 2019 16:28:28 +0200 Message-Id: <20191001142833.314631-13-fidencio@redhat.com> In-Reply-To: <20191001142833.314631-1-fidencio@redhat.com> References: <20191001142833.314631-1-fidencio@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 X-loop: libvir-list@redhat.com Cc: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= , abologna@redhat.com Subject: [libvirt] [jenkins-ci PATCH 12/17] guests: Add pip to the base project X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.43]); Tue, 01 Oct 2019 14:29:07 +0000 (UTC) Signed-off-by: Fabiano Fid=C3=AAncio --- guests/vars/projects/base.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/guests/vars/projects/base.yml b/guests/vars/projects/base.yml index f008de3..e90d12e 100644 --- a/guests/vars/projects/base.yml +++ b/guests/vars/projects/base.yml @@ -24,6 +24,7 @@ packages: - ninja - patch - perl + - pip - pkg-config - rpmbuild - screen --=20 2.23.0 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list From nobody Sun May 5 03:15:08 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass(p=none dis=none) header.from=redhat.com ARC-Seal: i=1; a=rsa-sha256; t=1569940149; cv=none; d=zoho.com; s=zohoarc; b=HXCyNDGQq06rVA2ketEKF4lKjmoeDAtJiUEEk9+zKyZJNtgUND1vSCpDoNe9MbL3pcuJFNGkrXIJdKXWx5pQwLsWCCYu6b8B04uXOxdOhu6bV6ZCnlGK4huLJRM0ngrfmxNvDwOhTeo8rm+P1/uU+N7zuulH9p5DHPZNviBOOIc= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1569940149; h=Content-Type:Content-Transfer-Encoding:Cc:Date:From:In-Reply-To:List-Subscribe:List-Post:List-Id:List-Archive:List-Help:List-Unsubscribe:MIME-Version:Message-ID:References:Sender:Subject:To:ARC-Authentication-Results; bh=ozqz5Bmc76x4rT5eZgl9rAj8B12pbRvX8kzQChFnr+c=; b=cF1a+qOzCJn+srY2vOMMcWy4n5/DMQmDGbqf8jlWeap6B4L4dd+tGGumnIZz4QVyRG2tqY+aEDDRhSnYstrlRyIxGaD268/hzauQoJUlFVs9A76iPKuuWb/v4L8cQsXrGVi/e6P5p/J72+bd4IVdTur4riL88uSClCSMxC4FBJI= ARC-Authentication-Results: i=1; mx.zoho.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass header.from= (p=none dis=none) header.from= Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 1569940149700372.3157164947396; Tue, 1 Oct 2019 07:29:09 -0700 (PDT) Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id DD373550CF; Tue, 1 Oct 2019 14:29:07 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.20]) by smtp.corp.redhat.com (Postfix) with ESMTPS id AE52360BE0; Tue, 1 Oct 2019 14:29:07 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id 544B1180BAA2; Tue, 1 Oct 2019 14:29:07 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id x91ET5ua029685 for ; Tue, 1 Oct 2019 10:29:05 -0400 Received: by smtp.corp.redhat.com (Postfix) id 6149F60468; Tue, 1 Oct 2019 14:29:05 +0000 (UTC) Received: from laerte.brq.redhat.com (unknown [10.43.2.64]) by smtp.corp.redhat.com (Postfix) with ESMTP id 8DE7B60464; Tue, 1 Oct 2019 14:29:04 +0000 (UTC) From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= To: libvir-list@redhat.com Date: Tue, 1 Oct 2019 16:28:29 +0200 Message-Id: <20191001142833.314631-14-fidencio@redhat.com> In-Reply-To: <20191001142833.314631-1-fidencio@redhat.com> References: <20191001142833.314631-1-fidencio@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 X-loop: libvir-list@redhat.com Cc: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= , abologna@redhat.com Subject: [libvirt] [jenkins-ci PATCH 13/17] guests: Install meson via pip X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.29]); Tue, 01 Oct 2019 14:29:08 +0000 (UTC) Let's install meson via pip whenever meson is not available at all or does not match the minimum required version. Signed-off-by: Fabiano Fid=C3=AAncio --- guests/lcitool | 13 +++++++++++++ guests/playbooks/update/tasks/packages.yml | 8 ++++++++ 2 files changed, 21 insertions(+) diff --git a/guests/lcitool b/guests/lcitool index 5b5b622..6be396c 100755 --- a/guests/lcitool +++ b/guests/lcitool @@ -625,6 +625,11 @@ class Application: else: keys =3D base_keys + [self._native_arch + "-" + k for k in bas= e_keys] =20 + pip_install =3D [] + pip_mappings =3D { + "meson" : "meson=3D=3D0.49.0", + } + # We need to add the base project manually here: the standard # machinery hides it because it's an implementation detail for project in projects + ["base"]: @@ -644,6 +649,8 @@ class Application: =20 if package not in pkgs: continue + if package in pip_mappings and pkgs[package] is None: + pip_install +=3D [pip_mappings[package]] if cross_policy =3D=3D "foreign" and pkgs[package] is not = None: cross_pkgs[package] =3D pkgs[package] if pkgs[package] is None or cross_policy in ["skip", "fore= ign"]: @@ -714,6 +721,12 @@ class Application: {package_manager} clean all -y """).format(**varmap)) =20 + if pip_install: + varmap["pip_install"] =3D " ".join(sorted(pip_install)) + sys.stdout.write(textwrap.dedent(""" + RUN pip3 install {pip_install} + """).format(**varmap)) + def run(self): args =3D self._parser.parse_args() if args.debug: diff --git a/guests/playbooks/update/tasks/packages.yml b/guests/playbooks/= update/tasks/packages.yml index ec8a4c4..f2603f8 100644 --- a/guests/playbooks/update/tasks/packages.yml +++ b/guests/playbooks/update/tasks/packages.yml @@ -100,3 +100,11 @@ package: name: '{{ flattened|sort }}' state: '{{ state }}' + +- name: '{{ project }}: Install meson from pip' + command: pip3 install meson=3D=3D0.49.0 + args: + creates: /usr/local/bin/meson + when: + - temp["meson"] is defined + - temp["meson"] =3D=3D None --=20 2.23.0 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list From nobody Sun May 5 03:15:08 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass(p=none dis=none) header.from=redhat.com ARC-Seal: i=1; a=rsa-sha256; t=1569940149; cv=none; d=zoho.com; s=zohoarc; b=G/EFqVN/2PAwm1UcdJ9hsF7qcazer3J8r+nVM2IiiqzePfc1sOk8oODy8x3m9ol4cQjtqoZsgUHSN//A85a72s9KN4qOy7EXtJ9nbdCSE4kwvivd5IaXOSOJdqquS9adYFiaVbSgAMUzl0DE59IH1NY1Jd377NIJdTov95yIHxQ= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1569940149; h=Content-Type:Content-Transfer-Encoding:Cc:Date:From:In-Reply-To:List-Subscribe:List-Post:List-Id:List-Archive:List-Help:List-Unsubscribe:MIME-Version:Message-ID:References:Sender:Subject:To:ARC-Authentication-Results; bh=gget8yeXBZeGYZ2B+4u5fMqaJtIZWDPMJb5WXW6CLwQ=; b=Xd0igJ6RxKEFOG4ErDweAEvJVqwvyZf4e1OSPE7/XtdvhBs7MVjilRlUuKHj2+kbxw7dT9HMkSFElaIn73ooQcDZryaD5vNUdtC4mcFycJiwel8MfbGNCjGKEX9pnmsoqEh8j8rl0HWAr3I5UxwdwtcIxrI59WO98jh5G9OE3lA= ARC-Authentication-Results: i=1; mx.zoho.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass header.from= (p=none dis=none) header.from= Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 156994014993562.69842805909252; Tue, 1 Oct 2019 07:29:09 -0700 (PDT) Received: from smtp.corp.redhat.com (int-mx08.intmail.prod.int.phx2.redhat.com [10.5.11.23]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id C3A09796FF; Tue, 1 Oct 2019 14:29:07 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.20]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 91CB8261D1; Tue, 1 Oct 2019 14:29:07 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id 3EA43180BAA4; Tue, 1 Oct 2019 14:29:07 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id x91ET6Y1029712 for ; Tue, 1 Oct 2019 10:29:06 -0400 Received: by smtp.corp.redhat.com (Postfix) id 7EA0160468; Tue, 1 Oct 2019 14:29:06 +0000 (UTC) Received: from laerte.brq.redhat.com (unknown [10.43.2.64]) by smtp.corp.redhat.com (Postfix) with ESMTP id AD03660464; Tue, 1 Oct 2019 14:29:05 +0000 (UTC) From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= To: libvir-list@redhat.com Date: Tue, 1 Oct 2019 16:28:30 +0200 Message-Id: <20191001142833.314631-15-fidencio@redhat.com> In-Reply-To: <20191001142833.314631-1-fidencio@redhat.com> References: <20191001142833.314631-1-fidencio@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 X-loop: libvir-list@redhat.com Cc: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= , abologna@redhat.com Subject: [libvirt] [jenkins-ci PATCH 14/17] osinfo-db-tools: Build again on all machines X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com X-Scanned-By: MIMEDefang 2.84 on 10.5.11.23 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.25]); Tue, 01 Oct 2019 14:29:08 +0000 (UTC) As now we've the needed packages for building and testing osinfo-db-tools on all systems supported by libvirt-jenkins-ci, let's just build osinfo-db-tools everywhere. RPM build is still not possible in CentOS7 as it doesn't have the needed RPM macros for Meson. Signed-off-by: Fabiano Fid=C3=AAncio --- guests/host_vars/libvirt-centos-7/main.yml | 1 + guests/host_vars/libvirt-debian-9/main.yml | 1 + guests/host_vars/libvirt-ubuntu-16/main.yml | 1 + guests/host_vars/libvirt-ubuntu-18/main.yml | 1 + guests/playbooks/build/projects/osinfo-db-tools.yml | 12 +----------- jenkins/projects/osinfo-db-tools.yaml | 10 +--------- 6 files changed, 6 insertions(+), 20 deletions(-) diff --git a/guests/host_vars/libvirt-centos-7/main.yml b/guests/host_vars/= libvirt-centos-7/main.yml index 6156414..17f3123 100644 --- a/guests/host_vars/libvirt-centos-7/main.yml +++ b/guests/host_vars/libvirt-centos-7/main.yml @@ -8,6 +8,7 @@ projects: - libvirt-perl - libvirt-python - osinfo-db + - osinfo-db-tools - virt-viewer =20 package_format: 'rpm' diff --git a/guests/host_vars/libvirt-debian-9/main.yml b/guests/host_vars/= libvirt-debian-9/main.yml index cb19395..ebec1b8 100644 --- a/guests/host_vars/libvirt-debian-9/main.yml +++ b/guests/host_vars/libvirt-debian-9/main.yml @@ -11,6 +11,7 @@ projects: - libvirt-sandbox - libvirt-tck - osinfo-db + - osinfo-db-tools - virt-manager - virt-viewer =20 diff --git a/guests/host_vars/libvirt-ubuntu-16/main.yml b/guests/host_vars= /libvirt-ubuntu-16/main.yml index 0407ae3..7fc7411 100644 --- a/guests/host_vars/libvirt-ubuntu-16/main.yml +++ b/guests/host_vars/libvirt-ubuntu-16/main.yml @@ -11,6 +11,7 @@ projects: - libvirt-sandbox - libvirt-tck - osinfo-db + - osinfo-db-tools - virt-viewer =20 package_format: 'deb' diff --git a/guests/host_vars/libvirt-ubuntu-18/main.yml b/guests/host_vars= /libvirt-ubuntu-18/main.yml index 4a95f45..9586baa 100644 --- a/guests/host_vars/libvirt-ubuntu-18/main.yml +++ b/guests/host_vars/libvirt-ubuntu-18/main.yml @@ -11,6 +11,7 @@ projects: - libvirt-sandbox - libvirt-tck - osinfo-db + - osinfo-db-tools - virt-manager - virt-viewer =20 diff --git a/guests/playbooks/build/projects/osinfo-db-tools.yml b/guests/p= laybooks/build/projects/osinfo-db-tools.yml index 67e5f00..54b77fd 100644 --- a/guests/playbooks/build/projects/osinfo-db-tools.yml +++ b/guests/playbooks/build/projects/osinfo-db-tools.yml @@ -1,17 +1,7 @@ --- - set_fact: name: osinfo-db-tools - # osinfo-db-tools depends on meson 0.49.0, which is not available on - # CentOS 7, Debian 9, Ubuntu 18; - machines: - - libvirt-debian-10 - - libvirt-debian-sid - - libvirt-fedora-29 - - libvirt-fedora-30 - - libvirt-fedora-rawhide - - libvirt-freebsd-11 - - libvirt-freebsd-12 - - libvirt-freebsd-current + machines: '{{ all_machines }}' archive_format: xz git_url: '{{ git_urls["osinfo-db-tools"][git_remote] }}' =20 diff --git a/jenkins/projects/osinfo-db-tools.yaml b/jenkins/projects/osinf= o-db-tools.yaml index 8609b46..635b572 100644 --- a/jenkins/projects/osinfo-db-tools.yaml +++ b/jenkins/projects/osinfo-db-tools.yaml @@ -1,15 +1,7 @@ --- - project: name: osinfo-db-tools - # osinfo-db-tools requires meson 0.49.0, which is not available on - # CentOS 7 and Debian 9; - machines: - - libvirt-debian-10 - - libvirt-fedora-29 - - libvirt-fedora-30 - - libvirt-fedora-rawhide - - libvirt-freebsd-11 - - libvirt-freebsd-12 + machines: '{{ all_machines }}' title: osinfo database tools archive_format: xz git_url: '{git_urls[osinfo-db-tools][default]}' --=20 2.23.0 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list From nobody Sun May 5 03:15:08 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass(p=none dis=none) header.from=redhat.com ARC-Seal: i=1; a=rsa-sha256; t=1569940154; cv=none; d=zoho.com; s=zohoarc; b=V4xo0XTKSkqRysZTQ2vD9hwExCNVJEAP5qwHAflxC9FEXL1TapTlok6TiPwIjK+F131PGC7YbD0QGM1ofPAq/MUzloGIdgI3jDx/75yqoC3C8X37SY8Hf+fjPsu4sfpfxX66Zuc5RS/vfhbLvXqGDPcdW3jAFeoQNFDPtEUSAzQ= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1569940154; h=Content-Type:Content-Transfer-Encoding:Cc:Date:From:In-Reply-To:List-Subscribe:List-Post:List-Id:List-Archive:List-Help:List-Unsubscribe:MIME-Version:Message-ID:References:Sender:Subject:To:ARC-Authentication-Results; bh=gl1/q6r1zwPTBL+R2+1jj632IO0AWZJQ733V8yzM/7c=; b=ONqZGCT87rv/vgiDY4WrRlB6zEokFgCKFgcjeulxvSSUgOP5jqrHIVdWlc/ia3idSBhn/ekEuZucwbVsHy9YVYUZWSyH7gB6MSzcvik58KdHb2Z2ACtfzy57VyZFBjDM4L8z7x2/eTlj9C0D9PJiwawe379EYHN5Xe0hCNMIFtQ= ARC-Authentication-Results: i=1; mx.zoho.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass header.from= (p=none dis=none) header.from= Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 1569940154088575.3293901410934; Tue, 1 Oct 2019 07:29:14 -0700 (PDT) Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 7979718C4279; Tue, 1 Oct 2019 14:29:12 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.21]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 52C095D9CC; Tue, 1 Oct 2019 14:29:12 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id 08FFE83556; Tue, 1 Oct 2019 14:29:12 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id x91ET9ZM029776 for ; Tue, 1 Oct 2019 10:29:09 -0400 Received: by smtp.corp.redhat.com (Postfix) id 1CFCE60464; Tue, 1 Oct 2019 14:29:09 +0000 (UTC) Received: from laerte.brq.redhat.com (unknown [10.43.2.64]) by smtp.corp.redhat.com (Postfix) with ESMTP id 4BD4260470; Tue, 1 Oct 2019 14:29:06 +0000 (UTC) From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= To: libvir-list@redhat.com Date: Tue, 1 Oct 2019 16:28:31 +0200 Message-Id: <20191001142833.314631-16-fidencio@redhat.com> In-Reply-To: <20191001142833.314631-1-fidencio@redhat.com> References: <20191001142833.314631-1-fidencio@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 X-loop: libvir-list@redhat.com Cc: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= , abologna@redhat.com Subject: [libvirt] [jenkins-ci PATCH 15/17] libosinfo: Build again on all machines X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com X-Scanned-By: MIMEDefang 2.79 on 10.5.11.14 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.6.2 (mx1.redhat.com [10.5.110.62]); Tue, 01 Oct 2019 14:29:13 +0000 (UTC) As now we've the needed packages for building and testing libosinfo on all systems supported by libvirt-jenkins-ci, let's just build libosinfo everywhere. RPM build is still not possible in CentOS7 as it doesn't have the needed RPM macros for Meson. Signed-off-by: Fabiano Fid=C3=AAncio --- guests/host_vars/libvirt-centos-7/main.yml | 1 + guests/host_vars/libvirt-debian-9/main.yml | 1 + guests/host_vars/libvirt-ubuntu-16/main.yml | 1 + guests/host_vars/libvirt-ubuntu-18/main.yml | 1 + guests/playbooks/build/projects/libosinfo.yml | 12 +----------- jenkins/projects/libosinfo.yaml | 8 +------- 6 files changed, 6 insertions(+), 18 deletions(-) diff --git a/guests/host_vars/libvirt-centos-7/main.yml b/guests/host_vars/= libvirt-centos-7/main.yml index 17f3123..94e29af 100644 --- a/guests/host_vars/libvirt-centos-7/main.yml +++ b/guests/host_vars/libvirt-centos-7/main.yml @@ -1,5 +1,6 @@ --- projects: + - libosinfo - libvirt - libvirt-cim - libvirt-dbus diff --git a/guests/host_vars/libvirt-debian-9/main.yml b/guests/host_vars/= libvirt-debian-9/main.yml index ebec1b8..6b685a4 100644 --- a/guests/host_vars/libvirt-debian-9/main.yml +++ b/guests/host_vars/libvirt-debian-9/main.yml @@ -1,5 +1,6 @@ --- projects: + - libosinfo - libvirt - libvirt-dbus - libvirt-glib diff --git a/guests/host_vars/libvirt-ubuntu-16/main.yml b/guests/host_vars= /libvirt-ubuntu-16/main.yml index 7fc7411..179dd03 100644 --- a/guests/host_vars/libvirt-ubuntu-16/main.yml +++ b/guests/host_vars/libvirt-ubuntu-16/main.yml @@ -1,5 +1,6 @@ --- projects: + - libosinfo - libvirt - libvirt-dbus - libvirt-glib diff --git a/guests/host_vars/libvirt-ubuntu-18/main.yml b/guests/host_vars= /libvirt-ubuntu-18/main.yml index 9586baa..5b5bf0c 100644 --- a/guests/host_vars/libvirt-ubuntu-18/main.yml +++ b/guests/host_vars/libvirt-ubuntu-18/main.yml @@ -1,5 +1,6 @@ --- projects: + - libosinfo - libvirt - libvirt-dbus - libvirt-glib diff --git a/guests/playbooks/build/projects/libosinfo.yml b/guests/playboo= ks/build/projects/libosinfo.yml index f06dbb3..7a8303c 100644 --- a/guests/playbooks/build/projects/libosinfo.yml +++ b/guests/playbooks/build/projects/libosinfo.yml @@ -1,17 +1,7 @@ --- - set_fact: name: libosinfo - # libosinfo depends on meson 0.49.0, which is not available on - # CentOS 7, Debian 9, Ubuntu 18; - machines: - - libvirt-debian-10 - - libvirt-debian-sid - - libvirt-fedora-29 - - libvirt-fedora-30 - - libvirt-fedora-rawhide - - libvirt-freebsd-11 - - libvirt-freebsd-12 - - libvirt-freebsd-current + machines: '{{ all_machines }}' archive_format: xz git_url: '{{ git_urls["libosinfo"][git_remote] }}' =20 diff --git a/jenkins/projects/libosinfo.yaml b/jenkins/projects/libosinfo.y= aml index b38524e..50b2117 100644 --- a/jenkins/projects/libosinfo.yaml +++ b/jenkins/projects/libosinfo.yaml @@ -3,13 +3,7 @@ name: libosinfo # libosinfo depends on meson 0.49.0, which is not available on # CentOS 7, Debian 9, Ubuntu 18; - machines: - - libvirt-debian-10 - - libvirt-fedora-29 - - libvirt-fedora-30 - - libvirt-fedora-rawhide - - libvirt-freebsd-11 - - libvirt-freebsd-12 + machines: '{{ all_machines }}' title: libosinfo archive_format: xz git_url: '{git_urls[libosinfo][default]}' --=20 2.23.0 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list From nobody Sun May 5 03:15:08 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass(p=none dis=none) header.from=redhat.com ARC-Seal: i=1; a=rsa-sha256; t=1569940158; cv=none; d=zoho.com; s=zohoarc; b=T84i3z74dY8acadYgWc7yOK6WCT1parjCt/2OydujL0TlYt+OCmyD4vjsByQOJ0VEeKJdFkvFpGfMJrm1Z0KBQF6TNERjsvxlyilqu7KV9Pth5i7wVImgUwz4xo3T3AEBxoUtiUk5H3NoS1tsDfQwHhVDGdVIYxlzn2l0l+LzrQ= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1569940158; h=Content-Type:Content-Transfer-Encoding:Cc:Date:From:In-Reply-To:List-Subscribe:List-Post:List-Id:List-Archive:List-Help:List-Unsubscribe:MIME-Version:Message-ID:References:Sender:Subject:To:ARC-Authentication-Results; bh=AzkUMErlT+xRqmIofJp1uIGjWx6kAF4nZezsway118c=; b=epWzlGhyc4XQFUfjJP405SIVFt3Ga6CUkDED2B0sXipf0/pI/vszesgp3hsa65Jj2Mv9+Uk5+6SJpq4pu58BQfk1kpiCY/S366Ztc6fS1WFTB/CvoziGnXuw4KfABUPOfuD8huEEGQSRgFtMof9mCfXkLE2riCi8rIrz//+uOl0= ARC-Authentication-Results: i=1; mx.zoho.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass header.from= (p=none dis=none) header.from= Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 1569940158355812.1640772138979; Tue, 1 Oct 2019 07:29:18 -0700 (PDT) Received: from smtp.corp.redhat.com (int-mx07.intmail.prod.int.phx2.redhat.com [10.5.11.22]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id BB94E3175281; Tue, 1 Oct 2019 14:29:16 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.21]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 82F5B1001B11; Tue, 1 Oct 2019 14:29:16 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id 348DD8354C; Tue, 1 Oct 2019 14:29:16 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id x91ETBgQ029809 for ; Tue, 1 Oct 2019 10:29:11 -0400 Received: by smtp.corp.redhat.com (Postfix) id 7E28060464; Tue, 1 Oct 2019 14:29:11 +0000 (UTC) Received: from laerte.brq.redhat.com (unknown [10.43.2.64]) by smtp.corp.redhat.com (Postfix) with ESMTP id AA1B160466; Tue, 1 Oct 2019 14:29:09 +0000 (UTC) From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= To: libvir-list@redhat.com Date: Tue, 1 Oct 2019 16:28:32 +0200 Message-Id: <20191001142833.314631-17-fidencio@redhat.com> In-Reply-To: <20191001142833.314631-1-fidencio@redhat.com> References: <20191001142833.314631-1-fidencio@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 X-loop: libvir-list@redhat.com Cc: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= , abologna@redhat.com Subject: [libvirt] [jenkins-ci PATCH 16/17] osinfo-db: Build again on all machines X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com X-Scanned-By: MIMEDefang 2.84 on 10.5.11.22 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.49]); Tue, 01 Oct 2019 14:29:17 +0000 (UTC) As now we've the needed packages for building and testing osinfo-db on all systems supported by libvirt-jenkins-ci, let's just build osinfo-db everywhere. Signed-off-by: Fabiano Fid=C3=AAncio --- guests/playbooks/build/projects/osinfo-db.yml | 14 +------------- jenkins/projects/osinfo-db.yaml | 10 +--------- 2 files changed, 2 insertions(+), 22 deletions(-) diff --git a/guests/playbooks/build/projects/osinfo-db.yml b/guests/playboo= ks/build/projects/osinfo-db.yml index 856e478..d910575 100644 --- a/guests/playbooks/build/projects/osinfo-db.yml +++ b/guests/playbooks/build/projects/osinfo-db.yml @@ -13,19 +13,7 @@ $MAKE install OSINFO_DB_TARGET=3D"--system" - include: '{{ playbook_base }}/jobs/generic-check-job.yml' vars: - # osinfo-db tests are Python 3 only, so they can't be ran on CentOS 7; - machines: - - libvirt-debian-9 - - libvirt-debian-10 - - libvirt-debian-sid - - libvirt-fedora-29 - - libvirt-fedora-30 - - libvirt-fedora-rawhide - - libvirt-freebsd-11 - - libvirt-freebsd-12 - - libvirt-freebsd-current - - libvirt-ubuntu-16 - - libvirt-ubuntu-18 + machines: '{{ all_machines }}' command: | $MAKE check - include: '{{ playbook_base }}/jobs/generic-rpm-job.yml' diff --git a/jenkins/projects/osinfo-db.yaml b/jenkins/projects/osinfo-db.y= aml index 256c62d..678a464 100644 --- a/jenkins/projects/osinfo-db.yaml +++ b/jenkins/projects/osinfo-db.yaml @@ -13,15 +13,7 @@ $MAKE install OSINFO_DB_TARGET=3D"--system" - generic-check-job: parent_jobs: 'osinfo-db-build' - # osinfo-db tests are Python 3 only, so they can't be ran on Cen= tOS 7; - machines: - - libvirt-debian-9 - - libvirt-debian-10 - - libvirt-fedora-29 - - libvirt-fedora-30 - - libvirt-fedora-rawhide - - libvirt-freebsd-11 - - libvirt-freebsd-12 + machines: '{{ all_machines }}' command: | $MAKE check - generic-rpm-job: --=20 2.23.0 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list From nobody Sun May 5 03:15:08 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass(p=none dis=none) header.from=redhat.com ARC-Seal: i=1; a=rsa-sha256; t=1569940160; cv=none; d=zoho.com; s=zohoarc; b=eXo4G3s2BHCFwWVYi4M6KNHT2096KQJPCsM5vSE/Gg9jvrGP+wX5Tnsjw23VrbQpFBPJMLIGa7C7KA/tLSOtFMGy2mALMbNvQtv0E1PYlOmQh8GM0S3FrYDOU0E1zD4r+/n184QeFv+YGx23YMiXaPqFrm0N2JnLvJA206G5ibQ= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1569940160; h=Content-Type:Content-Transfer-Encoding:Cc:Date:From:In-Reply-To:List-Subscribe:List-Post:List-Id:List-Archive:List-Help:List-Unsubscribe:MIME-Version:Message-ID:References:Sender:Subject:To:ARC-Authentication-Results; bh=S9DJt9XgoQlVXFWyWOMRBZNKG4Gkf0CioATA9kzurQA=; b=GBFc7PfEsUzNQf96BZL3f+c56QSaxJy8BXXWktWKjlfwrNeKllj+OEGR4mQBxpQsvDjkbm8F3cGXYm4JmV1OVDYCzwaa+EOzr5EsrWFxLQHmnxtwbz07UpezUng353tdSqZLnLHkt4MTWyXlZmZNGbqNFksOOHskjlqes2u2YNY= ARC-Authentication-Results: i=1; mx.zoho.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass header.from= (p=none dis=none) header.from= Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 1569940160344779.0986031917157; Tue, 1 Oct 2019 07:29:20 -0700 (PDT) Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.phx2.redhat.com [10.5.11.16]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 6E9043065603; Tue, 1 Oct 2019 14:29:18 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.20]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 4727E5C226; Tue, 1 Oct 2019 14:29:18 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id F115D180BA9C; Tue, 1 Oct 2019 14:29:17 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id x91ETG5A029847 for ; Tue, 1 Oct 2019 10:29:17 -0400 Received: by smtp.corp.redhat.com (Postfix) id F0C1C60464; Tue, 1 Oct 2019 14:29:16 +0000 (UTC) Received: from laerte.brq.redhat.com (unknown [10.43.2.64]) by smtp.corp.redhat.com (Postfix) with ESMTP id E454160466; Tue, 1 Oct 2019 14:29:11 +0000 (UTC) From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= To: libvir-list@redhat.com Date: Tue, 1 Oct 2019 16:28:33 +0200 Message-Id: <20191001142833.314631-18-fidencio@redhat.com> In-Reply-To: <20191001142833.314631-1-fidencio@redhat.com> References: <20191001142833.314631-1-fidencio@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 X-loop: libvir-list@redhat.com Cc: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= , abologna@redhat.com Subject: [libvirt] [jenkins-ci PATCH 17/17] Switch libvirt-dbus builds to meson X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com X-Scanned-By: MIMEDefang 2.79 on 10.5.11.16 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.47]); Tue, 01 Oct 2019 14:29:19 +0000 (UTC) Mind that check & syntax-check jobs have been merged as we dropped syntax-check target from our Meson builds. Signed-off-by: Fabiano Fid=C3=AAncio --- .../playbooks/build/projects/libvirt-dbus.yml | 23 ++++--------------- jenkins/projects/libvirt-dbus.yaml | 18 +++------------ 2 files changed, 7 insertions(+), 34 deletions(-) diff --git a/guests/playbooks/build/projects/libvirt-dbus.yml b/guests/play= books/build/projects/libvirt-dbus.yml index a6ff025..7624aea 100644 --- a/guests/playbooks/build/projects/libvirt-dbus.yml +++ b/guests/playbooks/build/projects/libvirt-dbus.yml @@ -18,12 +18,13 @@ git_url: '{{ git_urls["libvirt-dbus"][git_remote] }}' =20 - include: '{{ playbook_base }}/jobs/prepare.yml' -- include: '{{ playbook_base }}/jobs/autotools-build-job.yml' -- include: '{{ playbook_base }}/jobs/autotools-syntax-check-job.yml' +- include: '{{ playbook_base }}/jobs/meson-build-job.yml' +- include: '{{ playbook_base }}/jobs/meson-check-job.yml' vars: # CentOS 7 doesn't include Python 3, while the versions of flake8 # and pyflakes currently available on FreeBSD (3.5.0 and 2.0.0 # respectively) are not compatible + # Python 3 version in Ubuntu 16.04 is too old machines: - libvirt-debian-9 - libvirt-debian-10 @@ -31,23 +32,7 @@ - libvirt-fedora-29 - libvirt-fedora-30 - libvirt-fedora-rawhide - - libvirt-ubuntu-16 - - libvirt-ubuntu-18 -- include: '{{ playbook_base }}/jobs/autotools-check-job.yml' - vars: - # CentOS 7 doesn't include Python 3 and the version in Ubuntu - # 16.04 is too old - machines: - - libvirt-debian-9 - - libvirt-debian-10 - - libvirt-debian-sid - - libvirt-fedora-29 - - libvirt-fedora-30 - - libvirt-fedora-rawhide - - libvirt-freebsd-11 - - libvirt-freebsd-12 - - libvirt-freebsd-current - libvirt-ubuntu-18 -- include: '{{ playbook_base }}/jobs/autotools-rpm-job.yml' +- include: '{{ playbook_base }}/jobs/meson-rpm-job.yml' vars: machines: '{{ rpm_machines }}' diff --git a/jenkins/projects/libvirt-dbus.yaml b/jenkins/projects/libvirt-= dbus.yaml index 2b72fb4..0ddb0a9 100644 --- a/jenkins/projects/libvirt-dbus.yaml +++ b/jenkins/projects/libvirt-dbus.yaml @@ -14,9 +14,9 @@ archive_format: xz git_url: '{git_urls[libvirt-dbus][default]}' jobs: - - autotools-build-job: + - meson-build-job: parent_jobs: 'libvirt-glib-build' - - autotools-syntax-check-job: + - meson-check-job: parent_jobs: 'libvirt-dbus-build' # CentOS 7 doesn't include Python 3, while the versions of flake8 # and pyflakes currently available on FreeBSD (3.5.0 and 2.0.0 @@ -27,18 +27,6 @@ - libvirt-fedora-29 - libvirt-fedora-30 - libvirt-fedora-rawhide - - autotools-check-job: - parent_jobs: 'libvirt-dbus-syntax-check' - # CentOS 7 doesn't include Python 3 and the version in Ubuntu - # 16.04 is too old - machines: - - libvirt-debian-9 - - libvirt-debian-10 - - libvirt-fedora-29 - - libvirt-fedora-30 - - libvirt-fedora-rawhide - - libvirt-freebsd-11 - - libvirt-freebsd-12 - - autotools-rpm-job: + - meson-rpm-job: parent_jobs: 'libvirt-dbus-check' machines: '{rpm_machines}' --=20 2.23.0 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list