From: Roger Pau Monne Date: Tue, 23 Feb 2021 15:53:53 +0000 (+0100) Subject: cirrus-ci: introduce some basic FreeBSD testing X-Git-Tag: archive/raspbian/4.16.0+51-g0941d6cb-1+rpi1~2^2~42^2~878 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=5d94433a66df29ce314696a13bdd324ec0e342fe;p=xen.git cirrus-ci: introduce some basic FreeBSD testing Cirrus-CI supports FreeBSD natively, so introduce some build tests on FreeBSD. The Cirrus-CI requires a Github repository in order to trigger the tests. A sample run output can be seen at: https://github.com/royger/xen/runs/1962451343 Note the FreeBSD 11 task fails to build QEMU and is not part of this patch. Signed-off-by: Roger Pau Monné Acked-by: Andrew Cooper Release-Acked-by: Ian Jackson --- diff --git a/.cirrus.yml b/.cirrus.yml new file mode 100644 index 0000000000..5e3e46368e --- /dev/null +++ b/.cirrus.yml @@ -0,0 +1,26 @@ +# https://cirrus-ci.org/guide/tips-and-tricks/#sharing-configuration-between-tasks +freebsd_template: &FREEBSD_TEMPLATE + environment: + APPEND_LIB: /usr/local/lib + APPEND_INCLUDES: /usr/local/include + + install_script: pkg install -y seabios markdown gettext-tools gmake + pkgconf python libiconv bison perl5 + yajl lzo2 pixman argp-standalone + libxml2 glib git + + build_script: + - ./configure --with-system-seabios=/usr/local/share/seabios/bios.bin + - gmake -j`sysctl -n hw.ncpu` clang=y + +task: + name: 'FreeBSD 12' + freebsd_instance: + image_family: freebsd-12-2 + << : *FREEBSD_TEMPLATE + +task: + name: 'FreeBSD 13' + freebsd_instance: + image_family: freebsd-13-0 + << : *FREEBSD_TEMPLATE