diff mbox series

[for-4.15] cirrus-ci: introduce some basic FreeBSD testing

Message ID 20210223155353.77191-1-roger.pau@citrix.com (mailing list archive)
State New, archived
Headers show
Series [for-4.15] cirrus-ci: introduce some basic FreeBSD testing | expand

Commit Message

Roger Pau Monné Feb. 23, 2021, 3:53 p.m. UTC
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é <roger.pau@citrix.com>
---
I think this is fine to go in right now, as it's just a meta file for
a test framework, and has 0 chance of breaking anything existing in
Xen.
---
 .cirrus.yml | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)
 create mode 100644 .cirrus.yml

Comments

Andrew Cooper Feb. 23, 2021, 4:06 p.m. UTC | #1
On 23/02/2021 15:53, Roger Pau Monne wrote:
> 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é <roger.pau@citrix.com>

Acked-by: Andrew Cooper <andrew.cooper3@citrix.com>

Fantastic to get some FreeBSD CI available.
Ian Jackson Feb. 23, 2021, 5:04 p.m. UTC | #2
Roger Pau Monne writes ("[PATCH for-4.15] 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.

Release-Acked-by: Ian Jackson <iwj@xenproject.org>
diff mbox series

Patch

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