From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:52637) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1glVeE-0004Db-97 for qemu-devel@nongnu.org; Mon, 21 Jan 2019 04:13:39 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1glVeC-0001eQ-2A for qemu-devel@nongnu.org; Mon, 21 Jan 2019 04:13:38 -0500 Received: from mx1.redhat.com ([209.132.183.28]:59276) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1glVdy-0001Xm-Dg for qemu-devel@nongnu.org; Mon, 21 Jan 2019 04:13:28 -0500 References: <20190116191950.94110-1-emaste@freefall.freebsd.org> <20190118144724.66914-1-emaste@freebsd.org> From: Thomas Huth Message-ID: <8def73c9-23e5-9f87-81d1-dda0c7e6f7d9@redhat.com> Date: Mon, 21 Jan 2019 10:13:13 +0100 MIME-Version: 1.0 In-Reply-To: <20190118144724.66914-1-emaste@freebsd.org> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: quoted-printable Subject: Re: [Qemu-devel] [PATCH v3] .cirrus.yml: basic compile and test for FreeBSD List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: emaste@freebsd.org, qemu-devel@nongnu.org Cc: =?UTF-8?Q?Alex_Benn=c3=a9e?= , Fam Zheng , =?UTF-8?Q?Philippe_Mathieu-Daud=c3=a9?= , Paolo Bonzini On 2019-01-18 15:47, emaste@freebsd.org wrote: > From: Ed Maste >=20 > Signed-off-by: Ed Maste > --- > Changes since v2: > * remove fontconfig and freetype2, noted by Thomas Huth >=20 > After this patch is applied someone with appropriate permissions will > need to add the Cirrus-CI application in GitHub. Maybe even more important: It also works for forked repositories (once you've enabled the Cirrus-CI application from the marketplace), so people can use this to test their branches before sending PULL requests, e.g.: https://cirrus-ci.com/github/huth/qemu Thus this sounds like a good idea to me. Reviewed-by: Thomas Huth Tested-by: Thomas Huth > .cirrus.yml | 16 ++++++++++++++++ > MAINTAINERS | 8 ++++++++ > 2 files changed, 24 insertions(+) > create mode 100644 .cirrus.yml >=20 > diff --git a/.cirrus.yml b/.cirrus.yml > new file mode 100644 > index 0000000000..84d6f0519b > --- /dev/null > +++ b/.cirrus.yml > @@ -0,0 +1,16 @@ > +freebsd_12_task: > + freebsd_instance: > + image: freebsd-12-0-release-amd64 > + cpu: 8 > + memory: 24G > + env: > + CIRRUS_CLONE_DEPTH: 1 > + install_script: pkg install -y > + bison curl cyrus-sasl git glib gmake gnutls > + nettle perl5 pixman pkgconf png usbredir > + script: > + - mkdir build > + - cd build > + - ../configure || { cat config.log; exit 1; } > + - gmake -j8 V=3D1 > + - gmake -j8 V=3D1 check > diff --git a/MAINTAINERS b/MAINTAINERS > index af339b86db..f9da8c9cf0 100644 > --- a/MAINTAINERS > +++ b/MAINTAINERS > @@ -2483,6 +2483,14 @@ W: https://travis-ci.org/qemu/qemu > W: https://app.shippable.com/github/qemu/qemu > W: http://patchew.org/QEMU/ > =20 > +FreeBSD Hosted Continuous Integration > +M: Ed Maste > +M: Li-Wen Hsu > +L: qemu-devel@nongnu.org > +S: Maintained > +F: .cirrus.yml > +W: https://cirrus-ci.com/github/qemu/qemu > + > Guest Test Compilation Support > M: Alex Benn=C3=A9e > R: Philippe Mathieu-Daud=C3=A9 >=20