From nobody Sat May 4 07:54:34 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 Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 1509542831429911.8091388037441; Wed, 1 Nov 2017 06:27:11 -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 CD0AE5F7BF; Wed, 1 Nov 2017 13:27:09 +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 DC1C146E61; Wed, 1 Nov 2017 13:27:08 +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 3E6101800BCA; Wed, 1 Nov 2017 13:27:05 +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 vA1DR3BY028792 for ; Wed, 1 Nov 2017 09:27:03 -0400 Received: by smtp.corp.redhat.com (Postfix) id EEB7860317; Wed, 1 Nov 2017 13:27:03 +0000 (UTC) Received: from antique-work.brq.redhat.com (unknown [10.43.2.152]) by smtp.corp.redhat.com (Postfix) with ESMTP id 6F8E26055F for ; Wed, 1 Nov 2017 13:27:03 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com CD0AE5F7BF Authentication-Results: ext-mx10.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx10.extmail.prod.ext.phx2.redhat.com; spf=fail smtp.mailfrom=libvir-list-bounces@redhat.com From: Pavel Hrdina To: libvir-list@redhat.com Date: Wed, 1 Nov 2017 14:26:53 +0100 Message-Id: <17e1ac48dc5e6cb6fec91a33a246bf88564e8522.1509542719.git.phrdina@redhat.com> In-Reply-To: References: In-Reply-To: References: X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 X-loop: libvir-list@redhat.com Subject: [libvirt] [jenkins-ci PATCH 1/7] projects: make sure that we use correct make for all projects 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: , MIME-Version: 1.0 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.39]); Wed, 01 Nov 2017 13:27:10 +0000 (UTC) X-ZohoMail: RSF_0 Z_629925259 SPT_0 Content-Type: text/plain; charset="utf-8" On FreeBSD we need to use gmake. Signed-off-by: Pavel Hrdina --- projects/libvirt-cim.yaml | 8 +++++--- projects/osinfo-db.yaml | 10 ++++++---- 2 files changed, 11 insertions(+), 7 deletions(-) diff --git a/projects/libvirt-cim.yaml b/projects/libvirt-cim.yaml index e1c8fb1..b5405f3 100644 --- a/projects/libvirt-cim.yaml +++ b/projects/libvirt-cim.yaml @@ -12,12 +12,14 @@ - generic-build-job: parent_jobs: 'libvirt-master-build' command: | + {make_env} ./autogen.sh ./configure --prefix=3D$VIRT_PREFIX - make -j{smp} - make -j{smp} install + $MAKE -j{smp} + $MAKE -j{smp} install - generic-rpm-job: parent_jobs: 'libvirt-cim-master-build' command: | + {make_env} sed -i -e "s/.*libvirt-devel.*//" libvirt-cim.spec.in - make -j{smp} rpm + $MAKE -j{smp} rpm diff --git a/projects/osinfo-db.yaml b/projects/osinfo-db.yaml index 9fec36a..169c76b 100644 --- a/projects/osinfo-db.yaml +++ b/projects/osinfo-db.yaml @@ -14,14 +14,16 @@ - generic-build-job: parent_jobs: 'osinfo-db-tools-master-build' command: | + {make_env} export PATH=3D$VIRT_PREFIX/bin:$PATH - make -j3 all - make install OSINFO_DB_TARGET=3D"--system" + $MAKE -j3 all + $MAKE install OSINFO_DB_TARGET=3D"--system" - generic-rpm-job: parent_jobs: 'osinfo-db-master-build' command: | + {make_env} export PATH=3D$VIRT_PREFIX/bin:$PATH rm -f *.tar.xz - make osinfo-db.spec + $MAKE osinfo-db.spec perl -i -p -e 's/BuildRequires: osinfo-db-tools.*//' osinfo-db= .spec - make rpm + $MAKE rpm --=20 2.13.6 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list From nobody Sat May 4 07:54:34 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 Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 1509542851980461.93932428830806; Wed, 1 Nov 2017 06:27:31 -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 A061F2D5A11; Wed, 1 Nov 2017 13:27:30 +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 7EDF8600D2; Wed, 1 Nov 2017 13:27:30 +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 1A3363FCFD; Wed, 1 Nov 2017 13:27:29 +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 vA1DR5ZJ028806 for ; Wed, 1 Nov 2017 09:27:05 -0400 Received: by smtp.corp.redhat.com (Postfix) id 23C821914D; Wed, 1 Nov 2017 13:27:05 +0000 (UTC) Received: from antique-work.brq.redhat.com (unknown [10.43.2.152]) by smtp.corp.redhat.com (Postfix) with ESMTP id 9826560317 for ; Wed, 1 Nov 2017 13:27:04 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com A061F2D5A11 Authentication-Results: ext-mx05.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx05.extmail.prod.ext.phx2.redhat.com; spf=fail smtp.mailfrom=libvir-list-bounces@redhat.com From: Pavel Hrdina To: libvir-list@redhat.com Date: Wed, 1 Nov 2017 14:26:54 +0100 Message-Id: <98a7171817fb2495c0d858b46c39509c5b316889.1509542719.git.phrdina@redhat.com> In-Reply-To: References: In-Reply-To: References: X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 X-loop: libvir-list@redhat.com Subject: [libvirt] [jenkins-ci PATCH 2/7] projects: run RPM builds only on systems where it makes sense 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: , MIME-Version: 1.0 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.29]); Wed, 01 Nov 2017 13:27:31 +0000 (UTC) X-ZohoMail: RSF_0 Z_629925259 SPT_0 Content-Type: text/plain; charset="utf-8" Signed-off-by: Pavel Hrdina --- projects/libosinfo.yaml | 5 +++++ projects/libvirt-glib.yaml | 5 +++++ projects/libvirt-perl.yaml | 6 ++++++ projects/libvirt-python.yaml | 6 ++++++ projects/libvirt-sandbox.yaml | 5 +++++ projects/libvirt-tck.yaml | 4 ++++ projects/osinfo-db-tools.yaml | 5 +++++ projects/osinfo-db.yaml | 5 +++++ projects/virt-manager.yaml | 5 +++++ projects/virt-viewer.yaml | 3 +++ 10 files changed, 49 insertions(+) diff --git a/projects/libosinfo.yaml b/projects/libosinfo.yaml index 5f703b8..9ab2281 100644 --- a/projects/libosinfo.yaml +++ b/projects/libosinfo.yaml @@ -22,3 +22,8 @@ parent_jobs: 'libosinfo-master-syntax-check' - autotools-rpm-job: parent_jobs: 'libosinfo-master-check' + machines: + - libvirt-centos-7 + - libvirt-fedora-25 + - libvirt-fedora-26 + - libvirt-fedora-rawhide diff --git a/projects/libvirt-glib.yaml b/projects/libvirt-glib.yaml index e82dbcc..855abd2 100644 --- a/projects/libvirt-glib.yaml +++ b/projects/libvirt-glib.yaml @@ -21,3 +21,8 @@ parent_jobs: 'libvirt-glib-master-syntax-check' - autotools-rpm-job: parent_jobs: 'libvirt-glib-master-check' + machines: + - libvirt-centos-7 + - libvirt-fedora-25 + - libvirt-fedora-26 + - libvirt-fedora-rawhide diff --git a/projects/libvirt-perl.yaml b/projects/libvirt-perl.yaml index 5c314ec..77bc4ea 100644 --- a/projects/libvirt-perl.yaml +++ b/projects/libvirt-perl.yaml @@ -20,3 +20,9 @@ test_args: 'TEST_MAINTAINER=3D1' - perl-makemaker-rpm-job: parent_jobs: 'libvirt-perl-master-test' + machines: + - libvirt-centos-6 + - libvirt-centos-7 + - libvirt-fedora-25 + - libvirt-fedora-26 + - libvirt-fedora-rawhide diff --git a/projects/libvirt-python.yaml b/projects/libvirt-python.yaml index de916aa..c0ba338 100644 --- a/projects/libvirt-python.yaml +++ b/projects/libvirt-python.yaml @@ -19,3 +19,9 @@ parent_jobs: 'libvirt-python-master-build' - python-distutils-rpm-job: parent_jobs: 'libvirt-python-master-check' + machines: + - libvirt-centos-6 + - libvirt-centos-7 + - libvirt-fedora-25 + - libvirt-fedora-26 + - libvirt-fedora-rawhide diff --git a/projects/libvirt-sandbox.yaml b/projects/libvirt-sandbox.yaml index 9d6add8..71ab1c7 100644 --- a/projects/libvirt-sandbox.yaml +++ b/projects/libvirt-sandbox.yaml @@ -18,3 +18,8 @@ parent_jobs: 'libvirt-sandbox-master-syntax-check' - autotools-rpm-job: parent_jobs: 'libvirt-sandbox-master-check' + machines: + - libvirt-centos-7 + - libvirt-fedora-25 + - libvirt-fedora-26 + - libvirt-fedora-rawhide diff --git a/projects/libvirt-tck.yaml b/projects/libvirt-tck.yaml index 29340cb..a5caadd 100644 --- a/projects/libvirt-tck.yaml +++ b/projects/libvirt-tck.yaml @@ -17,3 +17,7 @@ parent_jobs: 'libvirt-tck-master-build' - perl-modulebuild-rpm-job: parent_jobs: 'libvirt-tck-master-test' + machines: + - libvirt-fedora-25 + - libvirt-fedora-26 + - libvirt-fedora-rawhide diff --git a/projects/osinfo-db-tools.yaml b/projects/osinfo-db-tools.yaml index ca656ee..4abd65e 100644 --- a/projects/osinfo-db-tools.yaml +++ b/projects/osinfo-db-tools.yaml @@ -20,3 +20,8 @@ parent_jobs: 'osinfo-db-tools-master-syntax-check' - autotools-rpm-job: parent_jobs: 'osinfo-db-tools-master-check' + machines: + - libvirt-centos-7 + - libvirt-fedora-25 + - libvirt-fedora-26 + - libvirt-fedora-rawhide diff --git a/projects/osinfo-db.yaml b/projects/osinfo-db.yaml index 169c76b..961ad64 100644 --- a/projects/osinfo-db.yaml +++ b/projects/osinfo-db.yaml @@ -20,6 +20,11 @@ $MAKE install OSINFO_DB_TARGET=3D"--system" - generic-rpm-job: parent_jobs: 'osinfo-db-master-build' + machines: + - libvirt-centos-7 + - libvirt-fedora-25 + - libvirt-fedora-26 + - libvirt-fedora-rawhide command: | {make_env} export PATH=3D$VIRT_PREFIX/bin:$PATH diff --git a/projects/virt-manager.yaml b/projects/virt-manager.yaml index ecfd497..2f65b47 100644 --- a/projects/virt-manager.yaml +++ b/projects/virt-manager.yaml @@ -22,3 +22,8 @@ parent_jobs: 'virt-manager-master-build' - python-distutils-rpm-job: parent_jobs: 'virt-manager-master-check' + machines: + - libvirt-centos-7 + - libvirt-fedora-25 + - libvirt-fedora-26 + - libvirt-fedora-rawhide diff --git a/projects/virt-viewer.yaml b/projects/virt-viewer.yaml index 9726119..9735cc7 100644 --- a/projects/virt-viewer.yaml +++ b/projects/virt-viewer.yaml @@ -21,4 +21,7 @@ - autotools-rpm-job: parent_jobs: 'virt-viewer-master-check' machines: + - libvirt-centos-7 + - libvirt-fedora-25 + - libvirt-fedora-26 - libvirt-fedora-rawhide --=20 2.13.6 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list From nobody Sat May 4 07:54:34 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 Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 1509542853502342.42454704299314; Wed, 1 Nov 2017 06:27:33 -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 9120C356C0; Wed, 1 Nov 2017 13:27:32 +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 6DF785D962; Wed, 1 Nov 2017 13:27:32 +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 027641800BD0; Wed, 1 Nov 2017 13:27:31 +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 vA1DR6mh028813 for ; Wed, 1 Nov 2017 09:27:06 -0400 Received: by smtp.corp.redhat.com (Postfix) id 00C9260317; Wed, 1 Nov 2017 13:27:06 +0000 (UTC) Received: from antique-work.brq.redhat.com (unknown [10.43.2.152]) by smtp.corp.redhat.com (Postfix) with ESMTP id 7673B60560 for ; Wed, 1 Nov 2017 13:27:05 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com 9120C356C0 Authentication-Results: ext-mx06.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx06.extmail.prod.ext.phx2.redhat.com; spf=fail smtp.mailfrom=libvir-list-bounces@redhat.com From: Pavel Hrdina To: libvir-list@redhat.com Date: Wed, 1 Nov 2017 14:26:55 +0100 Message-Id: In-Reply-To: References: In-Reply-To: References: X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 X-loop: libvir-list@redhat.com Subject: [libvirt] [jenkins-ci PATCH 3/7] projects: build osinfo-db on debian-8 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: , MIME-Version: 1.0 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.30]); Wed, 01 Nov 2017 13:27:33 +0000 (UTC) X-ZohoMail: RSF_0 Z_629925259 SPT_0 Content-Type: text/plain; charset="utf-8" Signed-off-by: Pavel Hrdina --- projects/osinfo-db.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/projects/osinfo-db.yaml b/projects/osinfo-db.yaml index 961ad64..9a7d5e1 100644 --- a/projects/osinfo-db.yaml +++ b/projects/osinfo-db.yaml @@ -3,6 +3,7 @@ name: osinfo-db machines: - libvirt-centos-7 + - libvirt-debian-8 - libvirt-debian-9 - libvirt-fedora-25 - libvirt-fedora-26 --=20 2.13.6 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list From nobody Sat May 4 07:54:34 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 Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 1509542856018326.01228869918236; Wed, 1 Nov 2017 06:27:36 -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 D5BCA2DACC9; Wed, 1 Nov 2017 13:27:34 +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 A15BC5C54C; Wed, 1 Nov 2017 13:27:34 +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 321BD3880; Wed, 1 Nov 2017 13:27:33 +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 vA1DR62H028828 for ; Wed, 1 Nov 2017 09:27:06 -0400 Received: by smtp.corp.redhat.com (Postfix) id D3A6319154; Wed, 1 Nov 2017 13:27:06 +0000 (UTC) Received: from antique-work.brq.redhat.com (unknown [10.43.2.152]) by smtp.corp.redhat.com (Postfix) with ESMTP id 5385F60317 for ; Wed, 1 Nov 2017 13:27:06 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com D5BCA2DACC9 Authentication-Results: ext-mx05.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx05.extmail.prod.ext.phx2.redhat.com; spf=fail smtp.mailfrom=libvir-list-bounces@redhat.com From: Pavel Hrdina To: libvir-list@redhat.com Date: Wed, 1 Nov 2017 14:26:56 +0100 Message-Id: <97b9a489e9c0b09138eb64fc238493007c9988d7.1509542719.git.phrdina@redhat.com> In-Reply-To: References: In-Reply-To: References: X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 X-loop: libvir-list@redhat.com Subject: [libvirt] [jenkins-ci PATCH 4/7] jobs: projects: be explicit about python2 binary 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: , MIME-Version: 1.0 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.29]); Wed, 01 Nov 2017 13:27:35 +0000 (UTC) X-ZohoMail: RSF_0 Z_629925259 SPT_0 Content-Type: text/plain; charset="utf-8" Signed-off-by: Pavel Hrdina --- jobs/python-distutils.yaml | 8 ++++---- projects/virt-manager.yaml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/jobs/python-distutils.yaml b/jobs/python-distutils.yaml index b7dbb1d..7055d26 100644 --- a/jobs/python-distutils.yaml +++ b/jobs/python-distutils.yaml @@ -41,8 +41,8 @@ builders: - shell: | {command_pre_build} - python setup.py build - python setup.py install --prefix=3D$VIRT_PREFIX + python2 setup.py build + python2 setup.py install --prefix=3D$VIRT_PREFIX publishers: - email: recipients: '{obj:spam}' @@ -79,7 +79,7 @@ values: '{obj:machines}' builders: - shell: | - python setup.py test + python2 setup.py test publishers: - email: recipients: '{obj:spam}' @@ -116,7 +116,7 @@ builders: - shell: | sed -i -e 's/BuildRequires: libvirt.*devel.*//' *.spec.in - python setup.py rpm + python2 setup.py rpm publishers: - email: recipients: '{obj:spam}' diff --git a/projects/virt-manager.yaml b/projects/virt-manager.yaml index 2f65b47..63458c5 100644 --- a/projects/virt-manager.yaml +++ b/projects/virt-manager.yaml @@ -17,7 +17,7 @@ - 'libvirt-python-master-build' - 'libosinfo-master-build' command_pre_build: | - python setup.py configure --prefix=3D$VIRT_PREFIX + python2 setup.py configure --prefix=3D$VIRT_PREFIX - python-distutils-check-job: parent_jobs: 'virt-manager-master-build' - python-distutils-rpm-job: --=20 2.13.6 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list From nobody Sat May 4 07:54:34 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 Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 1509542852196254.51354535752057; Wed, 1 Nov 2017 06:27:32 -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 C9A7F7E386; Wed, 1 Nov 2017 13:27:30 +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 A2D6C5C54C; Wed, 1 Nov 2017 13:27:30 +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 2FDC01800BCC; Wed, 1 Nov 2017 13:27:29 +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 vA1DR7KU028838 for ; Wed, 1 Nov 2017 09:27:07 -0400 Received: by smtp.corp.redhat.com (Postfix) id EBD746055F; Wed, 1 Nov 2017 13:27:07 +0000 (UTC) Received: from antique-work.brq.redhat.com (unknown [10.43.2.152]) by smtp.corp.redhat.com (Postfix) with ESMTP id 697FC60560 for ; Wed, 1 Nov 2017 13:27:07 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com C9A7F7E386 Authentication-Results: ext-mx04.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx04.extmail.prod.ext.phx2.redhat.com; spf=fail smtp.mailfrom=libvir-list-bounces@redhat.com From: Pavel Hrdina To: libvir-list@redhat.com Date: Wed, 1 Nov 2017 14:26:57 +0100 Message-Id: In-Reply-To: References: In-Reply-To: References: X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 X-loop: libvir-list@redhat.com Subject: [libvirt] [jenkins-ci PATCH 5/7] guests: install unzip for virt-manager 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: , MIME-Version: 1.0 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.28]); Wed, 01 Nov 2017 13:27:31 +0000 (UTC) X-ZohoMail: RSF_0 Z_629925259 SPT_0 Content-Type: text/plain; charset="utf-8" It's used by virt-manager tests. Signed-off-by: Pavel Hrdina --- guests/vars/mappings.yml | 4 ++++ guests/vars/projects/virt-manager.yml | 1 + 2 files changed, 5 insertions(+) diff --git a/guests/vars/mappings.yml b/guests/vars/mappings.yml index e78277a..b2c1748 100644 --- a/guests/vars/mappings.yml +++ b/guests/vars/mappings.yml @@ -631,6 +631,10 @@ mappings: rpm: spice-gtk3-devel CentOS6: =20 + unzip: + default: unzip + FreeBSD: + usb-ids: default: hwdata FreeBSD: usbids diff --git a/guests/vars/projects/virt-manager.yml b/guests/vars/projects/v= irt-manager.yml index 29bacb4..474017f 100644 --- a/guests/vars/projects/virt-manager.yml +++ b/guests/vars/projects/virt-manager.yml @@ -5,3 +5,4 @@ packages: - python2-ipaddr - python2-libxml2 - python2-requests + - unzip --=20 2.13.6 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list From nobody Sat May 4 07:54:34 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 Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 1509542857717914.7858404457259; Wed, 1 Nov 2017 06:27:37 -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 64C3A85A05; Wed, 1 Nov 2017 13:27:36 +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 3C4515D96F; Wed, 1 Nov 2017 13:27:36 +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 C7810180474E; Wed, 1 Nov 2017 13:27:34 +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 vA1DRBUk028848 for ; Wed, 1 Nov 2017 09:27:11 -0400 Received: by smtp.corp.redhat.com (Postfix) id 75ED86055F; Wed, 1 Nov 2017 13:27:11 +0000 (UTC) Received: from antique-work.brq.redhat.com (unknown [10.43.2.152]) by smtp.corp.redhat.com (Postfix) with ESMTP id EA97819152 for ; Wed, 1 Nov 2017 13:27:08 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com 64C3A85A05 Authentication-Results: ext-mx02.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx02.extmail.prod.ext.phx2.redhat.com; spf=fail smtp.mailfrom=libvir-list-bounces@redhat.com From: Pavel Hrdina To: libvir-list@redhat.com Date: Wed, 1 Nov 2017 14:26:58 +0100 Message-Id: <1857c59871409da42211957b987342cd5556a773.1509542719.git.phrdina@redhat.com> In-Reply-To: References: In-Reply-To: References: X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 X-loop: libvir-list@redhat.com Subject: [libvirt] [jenkins-ci PATCH 6/7] guests: install libgovirt-devel on all RPM based distros 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: , MIME-Version: 1.0 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]); Wed, 01 Nov 2017 13:27:37 +0000 (UTC) X-ZohoMail: RSF_0 Z_629925259 SPT_0 Content-Type: text/plain; charset="utf-8" Signed-off-by: Pavel Hrdina --- guests/vars/mappings.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guests/vars/mappings.yml b/guests/vars/mappings.yml index b2c1748..eca8dbe 100644 --- a/guests/vars/mappings.yml +++ b/guests/vars/mappings.yml @@ -220,8 +220,8 @@ mappings: rpm: dbus-devel =20 libgovirt: + rpm: libgovirt-devel Debian: libgovirt-dev - Fedora: libgovirt-devel Debian8: =20 libnl: --=20 2.13.6 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list From nobody Sat May 4 07:54:34 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 Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 1509542859669949.6381073556779; Wed, 1 Nov 2017 06:27:39 -0700 (PDT) Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 772F34DD7D; Wed, 1 Nov 2017 13:27:38 +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 53D7E6062D; Wed, 1 Nov 2017 13:27:38 +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 D9A2E388B; Wed, 1 Nov 2017 13:27:36 +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 vA1DRCTv028853 for ; Wed, 1 Nov 2017 09:27:12 -0400 Received: by smtp.corp.redhat.com (Postfix) id 55B4960486; Wed, 1 Nov 2017 13:27:12 +0000 (UTC) Received: from antique-work.brq.redhat.com (unknown [10.43.2.152]) by smtp.corp.redhat.com (Postfix) with ESMTP id C871E6055F for ; Wed, 1 Nov 2017 13:27:11 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com 772F34DD7D Authentication-Results: ext-mx09.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx09.extmail.prod.ext.phx2.redhat.com; spf=fail smtp.mailfrom=libvir-list-bounces@redhat.com From: Pavel Hrdina To: libvir-list@redhat.com Date: Wed, 1 Nov 2017 14:26:59 +0100 Message-Id: <88ca1e8f071169ef2ff755db8811f60d339a6c65.1509542719.git.phrdina@redhat.com> In-Reply-To: References: In-Reply-To: References: X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 X-loop: libvir-list@redhat.com Subject: [libvirt] [jenkins-ci PATCH 7/7] projects: disable libvirt-sandbox on centos-7 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: , MIME-Version: 1.0 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.13 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.38]); Wed, 01 Nov 2017 13:27:38 +0000 (UTC) X-ZohoMail: RSF_0 Z_629925259 SPT_0 Content-Type: text/plain; charset="utf-8" There is no xz-static available. Signed-off-by: Pavel Hrdina --- projects/libvirt-sandbox.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/projects/libvirt-sandbox.yaml b/projects/libvirt-sandbox.yaml index 71ab1c7..28f7085 100644 --- a/projects/libvirt-sandbox.yaml +++ b/projects/libvirt-sandbox.yaml @@ -2,7 +2,6 @@ - project: name: libvirt-sandbox machines: - - libvirt-centos-7 - libvirt-debian-9 - libvirt-fedora-25 - libvirt-fedora-26 @@ -19,7 +18,6 @@ - autotools-rpm-job: parent_jobs: 'libvirt-sandbox-master-check' machines: - - libvirt-centos-7 - libvirt-fedora-25 - libvirt-fedora-26 - libvirt-fedora-rawhide --=20 2.13.6 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list