forked from xen-project/xen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.cirrus.yml
69 lines (56 loc) · 1.77 KB
/
.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# https://cirrus-ci.org/guide/tips-and-tricks/#sharing-configuration-between-tasks
freebsd_13: &FREEBSD_13
freebsd_instance:
image_family: freebsd-13-4
freebsd_14: &FREEBSD_14
freebsd_instance:
image_family: freebsd-14-2
freebsd_15: &FREEBSD_15
freebsd_instance:
image_family: freebsd-15-0-snap
freebsd_template: &FREEBSD_ENV
environment:
APPEND_LIB: /usr/local/lib
APPEND_INCLUDES: /usr/local/include
freebsd_full_build_template: &FREEBSD_FULL_BUILD_TEMPLATE
<< : *FREEBSD_ENV
install_script: pkg install -y seabios gmake ninja bash
pkgconf bison perl5
yajl lzo2 pixman argp-standalone
libxml2 glib git python3
build_script:
- cc --version
- ./configure --with-system-seabios=/usr/local/share/seabios/bios.bin
- gmake -j`sysctl -n hw.ncpu` clang=y
freebsd_randconfig_template: &FREEBSD_RANDCONFIG_TEMPLATE
<< : *FREEBSD_ENV
install_script: pkg install -y gmake python3 bison
build_script:
- cc --version
- gmake -j`sysctl -n hw.ncpu` -C xen clang=y \
KCONFIG_ALLCONFIG=tools/kconfig/allrandom.config randconfig
- gmake -j`sysctl -n hw.ncpu` build-xen clang=y
task:
name: 'FreeBSD 13: full build'
<< : *FREEBSD_13
<< : *FREEBSD_FULL_BUILD_TEMPLATE
task:
name: 'FreeBSD 14: full build'
<< : *FREEBSD_14
<< : *FREEBSD_FULL_BUILD_TEMPLATE
task:
name: 'FreeBSD 15: full build'
<< : *FREEBSD_15
<< : *FREEBSD_FULL_BUILD_TEMPLATE
task:
name: 'FreeBSD 13: randconfig'
<< : *FREEBSD_13
<< : *FREEBSD_RANDCONFIG_TEMPLATE
task:
name: 'FreeBSD 14: randconfig'
<< : *FREEBSD_14
<< : *FREEBSD_RANDCONFIG_TEMPLATE
task:
name: 'FreeBSD 15: randconfig'
<< : *FREEBSD_15
<< : *FREEBSD_RANDCONFIG_TEMPLATE