forked from lsof-org/lsof
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.cirrus.yml
More file actions
27 lines (27 loc) · 692 Bytes
/
.cirrus.yml
File metadata and controls
27 lines (27 loc) · 692 Bytes
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
task:
freebsd_instance:
cpu: 1
matrix:
- image_family: freebsd-15-0-amd64-zfs
- image_family: freebsd-14-3
install_script: pkg install -y bash git autoconf automake libtool groff pkgconf
kernel_src_script: |
uname -r
if [[ $(uname -r) == "14.3-RELEASE" ]]; then
git clone --branch releng/14.3 https://git.FreeBSD.org/src.git /usr/src
fi;
build_script:
- ./Configure -n freebsd
- make
test_script:
- bash ./check.bash freebsd
autotools_build_script:
- git clean -fdx .
- autoreconf -vif
- ./configure
- make
- make install
autotools_test_script:
- make check
- cat test-suite.log
- make distcheck