]> git.proxmox.com Git - mirror_ovs.git/blob - .cirrus.yml
cirrus: Disable coredumps on FreeBSD.
[mirror_ovs.git] / .cirrus.yml
1 freebsd_build_task:
2
3 freebsd_instance:
4 matrix:
5 image: freebsd-12-0-release-amd64
6 image: freebsd-11-2-release-amd64
7 cpu: 4
8 memory: 8G
9
10 env:
11 DEPENDENCIES: automake libtool gmake gcc wget openssl
12 python py27-six py27-sphinx py27-openssl
13 python3 py36-six py36-openssl
14 matrix:
15 COMPILER: gcc
16 COMPILER: clang
17
18 prepare_script:
19 - sysctl -w kern.coredump=0
20 - pkg install -y ${DEPENDENCIES}
21
22 configure_script:
23 - ./boot.sh
24 - ./configure CC=${COMPILER} MAKE=gmake OVS_CFLAGS='-Wall' --enable-Werror
25 || { cat config.log; exit 1; }
26
27 build_script:
28 - gmake -j8
29
30 check_script:
31 - gmake -j8 check TESTSUITEFLAGS=-j8 RECHECK=yes
32 || { cat ./tests/testsuite.log; exit 1; }