mirrored from git://xenbits.xen.org/xen.git
-
Notifications
You must be signed in to change notification settings - Fork 331
/
.cirrus.yml
34 lines (29 loc) · 965 Bytes
/
.cirrus.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# 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 gmake ninja bash
pkgconf python bison perl5
yajl lzo2 pixman argp-standalone
libxml2 glib git python311
build_script:
- cc --version
- export PYTHON=/usr/local/bin/python3.11
- ./configure --with-system-seabios=/usr/local/share/seabios/bios.bin
- gmake -j`sysctl -n hw.ncpu` clang=y
task:
name: 'FreeBSD 13'
freebsd_instance:
image_family: freebsd-13-3
<< : *FREEBSD_TEMPLATE
task:
name: 'FreeBSD 14'
freebsd_instance:
image_family: freebsd-14-1
<< : *FREEBSD_TEMPLATE
task:
name: 'FreeBSD 15'
freebsd_instance:
image_family: freebsd-15-0-snap
<< : *FREEBSD_TEMPLATE