-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy path.cirrus.yml
More file actions
54 lines (52 loc) · 1.61 KB
/
.cirrus.yml
File metadata and controls
54 lines (52 loc) · 1.61 KB
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
---
env:
CIRRUS_CLONE_DEPTH: 1
ARCH: amd64
task:
timeout_in: 30m
matrix:
# yamllint disable rule:comments
#
# ngie: as of 2025-12-28 the 16.0-CURRENT supplied image on GCP does not
# boot (gets stuck trying to find the bootdisk). Disable it so Cirrus CI
# actually completes instead of getting stuck forever.
#
# See https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=292009 for more
# details.
#
#
#- name: 16.0-CURRENT
# freebsd_instance:
# image_family: freebsd-16-0-snap
#
# yamllint enable rule:comments
- name: 15-STABLE
freebsd_instance:
image_family: freebsd-15-0-amd64-ufs-snap
- name: 15.0-RELEASE
freebsd_instance:
image_family: freebsd-15-0-amd64-ufs
- name: 14-STABLE
freebsd_instance:
image_family: freebsd-14-3-snap
- name: 14.3-RELEASE
freebsd_instance:
image_family: freebsd-14-3
install_script:
# yamllint disable-line rule:line-length
- sed -i.bak -e 's,pkg+http://pkg.FreeBSD.org/\${ABI}/quarterly,pkg+http://pkg.FreeBSD.org/\${ABI}/latest,' /etc/pkg/FreeBSD.conf
- ASSUME_ALWAYS_YES=yes pkg bootstrap -f
- pkg install -y autoconf automake doxygen libtool kyua pkgconf
script:
- ./admin/ci-build/01_configure.sh
- env EXTRA_DISTCHECK_CONFIGURE_ARGS="--enable-atf --enable-developer"
JUNIT_OUTPUT="$(pwd)/test-results.xml"
./admin/ci-build/02_distcheck.sh
on_failure:
dump_distcheck_logs:
- cat atf-*/_build/sub/config.log
always:
junit_artifacts:
path: "test-results.xml"
type: text/xml
format: junit