]> git.proxmox.com Git - mirror_ovs.git/blame - .cirrus.yml
ovsdb-idl.at: Increase timeouts for tests with multiple remotes.
[mirror_ovs.git] / .cirrus.yml
CommitLineData
b1331295
IM
1freebsd_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 matrix:
12 COMPILER: gcc
13 COMPILER: clang
14
15 prepare_script:
16 - pkg install -y automake libtool gmake gcc wget
17 python py27-six py27-sphinx
18
19 configure_script:
20 - ./boot.sh
21 - ./configure CC=$COMPILER MAKE=gmake OVS_CFLAGS='-Wall' --enable-Werror
22 || { cat config.log; exit 1; }
23
24 build_script:
25 - gmake -j8
26
27# TODO(i.maximets): Uncomment the test suite execution when it is fixed.
28# check_script:
29# - gmake -j8 check TESTSUITEFLAGS=-j8 RECHECK=yes
30# || { cat ./tests/testsuite.log; exit 1; }