From patchwork Fri Jan 18 14:47:24 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Ed Maste X-Patchwork-Id: 1027419 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=nongnu.org (client-ip=209.51.188.17; helo=lists.gnu.org; envelope-from=qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=freebsd.org Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 43h3hw55wtz9sBZ for ; Sat, 19 Jan 2019 01:48:15 +1100 (AEDT) Received: from localhost ([127.0.0.1]:40741 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gkVRL-0007Dc-Tp for incoming@patchwork.ozlabs.org; Fri, 18 Jan 2019 09:48:11 -0500 Received: from eggs.gnu.org ([209.51.188.92]:39944) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gkVR0-0007DC-QK for qemu-devel@nongnu.org; Fri, 18 Jan 2019 09:47:51 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gkVQz-0003KS-LU for qemu-devel@nongnu.org; Fri, 18 Jan 2019 09:47:50 -0500 Received: from mx2.freebsd.org ([2001:1900:2254:206a::19:2]:44982) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gkVQz-0003GA-Dw for qemu-devel@nongnu.org; Fri, 18 Jan 2019 09:47:49 -0500 Received: from mx1.freebsd.org (mx1.freebsd.org [96.47.72.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mx1.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx2.freebsd.org (Postfix) with ESMTPS id 0491995C4E for ; Fri, 18 Jan 2019 14:47:45 +0000 (UTC) (envelope-from emaste@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [96.47.72.132]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48F2892DF9; Fri, 18 Jan 2019 14:47:44 +0000 (UTC) (envelope-from emaste@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1079) id 209F11400F; Fri, 18 Jan 2019 14:47:44 +0000 (UTC) From: emaste@freebsd.org To: qemu-devel@nongnu.org Date: Fri, 18 Jan 2019 14:47:24 +0000 Message-Id: <20190118144724.66914-1-emaste@freebsd.org> X-Mailer: git-send-email 2.19.1 In-Reply-To: <20190116191950.94110-1-emaste@freefall.freebsd.org> References: <20190116191950.94110-1-emaste@freefall.freebsd.org> MIME-Version: 1.0 X-Rspamd-Queue-Id: 48F2892DF9 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.91 / 15.00]; local_wl_from(0.00)[freebsd.org]; NEURAL_HAM_MEDIUM(-0.99)[-0.993,0]; NEURAL_HAM_LONG(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.92)[-0.917,0]; ASN(0.00)[asn:11403, ipnet:96.47.64.0/20, country:US] X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 2001:1900:2254:206a::19:2 Subject: [Qemu-devel] [PATCH v3] .cirrus.yml: basic compile and test for FreeBSD X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Ed Maste Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: "Qemu-devel" From: Ed Maste Signed-off-by: Ed Maste Reviewed-by: Thomas Huth Tested-by: Thomas Huth --- Changes since v2: * remove fontconfig and freetype2, noted by Thomas Huth After this patch is applied someone with appropriate permissions will need to add the Cirrus-CI application in GitHub. .cirrus.yml | 16 ++++++++++++++++ MAINTAINERS | 8 ++++++++ 2 files changed, 24 insertions(+) create mode 100644 .cirrus.yml 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=1 + - gmake -j8 V=1 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/ +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ée R: Philippe Mathieu-Daudé