Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 10 Apr 2019 15:38:53 +0000 (UTC)
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r346085 - head
Message-ID:  <201904101538.x3AFcrQj092365@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: emaste
Date: Wed Apr 10 15:38:53 2019
New Revision: 346085
URL: https://svnweb.freebsd.org/changeset/base/346085

Log:
  Add Cirrus CI config file to support CI builds (in downstream projects)
  
  Make use of the CI smoke test script added in r346080.
  
  Reviewed by:	imp, lwhsu
  Sponsored by:	The FreeBSD Foundation

Added:
  head/.cirrus.yml   (contents, props changed)

Added: head/.cirrus.yml
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/.cirrus.yml	Wed Apr 10 15:38:53 2019	(r346085)
@@ -0,0 +1,19 @@
+# $FreeBSD$
+
+freebsd_instance:
+  image: freebsd-12-0-release-amd64
+  cpu: 8
+  memory: 24G
+
+env:
+  CIRRUS_CLONE_DEPTH: 1
+
+task:
+  timeout_in: 90m
+  install_script:
+  - pkg install -y qemu-devel
+  - fetch https://people.freebsd.org/~emaste/OVMF.fd
+  script:
+  - make -j$(sysctl -n hw.ncpu) WITHOUT_TOOLCHAIN=yes buildworld buildkernel
+  test_script:
+  - sh tools/boot/ci-qemu-test.sh



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201904101538.x3AFcrQj092365>