svn commit: r346085 - head

Ed Maste emaste at FreeBSD.org
Tue Sep 3 14:06:42 UTC 2019


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




More information about the svn-src-head mailing list