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

Roger Pau Monne posted 1 patch 3 years, 2 months ago
Test gitlab-ci failed
Patches applied successfully (tree, apply log)
git fetch https://gitlab.com/xen-project/patchew/xen tags/patchew/20210223155353.77191-1-roger.pau@citrix.com
.cirrus.yml | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
create mode 100644 .cirrus.yml
[PATCH for-4.15] cirrus-ci: introduce some basic FreeBSD testing
Posted by Roger Pau Monne 3 years, 2 months ago
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

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
-- 
2.30.1


Re: [PATCH for-4.15] cirrus-ci: introduce some basic FreeBSD testing
Posted by Andrew Cooper 3 years, 2 months ago
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.

Re: [PATCH for-4.15] cirrus-ci: introduce some basic FreeBSD testing
Posted by Ian Jackson 3 years, 2 months ago
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>