tests: Add ability to automatically rerun failed tests.
[cascardo/ovs.git] / debian / rules
1 #!/usr/bin/make -f
2 # -*- makefile -*-
3 # Sample debian/rules that uses debhelper.
4 #
5 # This file was originally written by Joey Hess and Craig Small.
6 # As a special exception, when this file is copied by dh-make into a
7 # dh-make output file, you may use that output file without restriction.
8 # This special exception was added by Craig Small in version 0.37 of dh-make.
9 #
10 # Modified to make a template file for a multi-binary package with separated
11 # build-arch and build-indep targets  by Bill Allombert 2001
12 #export DH_VERBOSE=1
13
14 PACKAGE=openvswitch
15 PACKAGE_DKMS=openvswitch-datapath-dkms
16 DEB_UPSTREAM_VERSION=$(shell dpkg-parsechangelog | sed -rne 's,^Version: ([0-9]:)*([^-]+).*,\2,p')
17
18 ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
19 PARALLEL = -j$(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
20 else
21 PARALLEL =
22 endif
23
24 %:
25         dh $@ --with autoreconf,python2 --parallel
26
27 # use --as-needed only if supported by dh-autoreconf (to simplify backporting)
28 DH_AS_NEEDED=$(shell dpkg --compare-versions $$(dpkg --status dh-autoreconf | grep Version | cut -d' ' -f2) ge 6 && echo --as-needed)
29 override_dh_autoreconf:
30         dh_autoreconf $(DH_AS_NEEDED)
31
32 override_dh_auto_configure:
33         dh_auto_configure -- --enable-ssl $(DATAPATH_CONFIGURE_OPTS)
34
35 override_dh_auto_test:
36 ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
37         if $(MAKE) check TESTSUITEFLAGS='$(PARALLEL)' RECHECK=yes; then :; \
38         else \
39                 cat tests/testsuite.log; \
40                 exit 1; \
41         fi
42 endif
43
44 override_dh_auto_build:
45         dh_auto_build -- dist distdir=openvswitch
46
47 override_dh_auto_clean:
48         rm -f python/ovs/*.pyc python/ovs/db/*.pyc
49         dh_auto_clean
50
51 override_dh_install:
52         dh_install
53         # openvswitch-switch
54         cp debian/openvswitch-switch.template debian/openvswitch-switch/usr/share/openvswitch/switch/default.template
55
56         # ovn-host
57         cp debian/ovn-host.template debian/ovn-host/usr/share/ovn/host/default.template
58
59         # ovn-central
60         cp debian/ovn-central.template debian/ovn-central/usr/share/ovn/central/default.template
61
62         # openvswitch-datapath-source
63         cp debian/rules.modules debian/openvswitch-datapath-source/usr/src/modules/openvswitch-datapath/debian/rules
64         chmod 755 debian/openvswitch-datapath-source/usr/src/modules/openvswitch-datapath/debian/rules
65         cd debian/openvswitch-datapath-source/usr/src && tar -c modules | bzip2 -9 > openvswitch-datapath.tar.bz2 && rm -rf modules
66
67         # openvswitch-datapath-dkms
68         # setup the dirs
69         dh_installdirs -p$(PACKAGE_DKMS) usr/src/$(PACKAGE)-$(DEB_UPSTREAM_VERSION)
70
71         # copy the source
72         cd debian/$(PACKAGE_DKMS)/usr/src/$(PACKAGE)-$(DEB_UPSTREAM_VERSION) && tar xvzf $(CURDIR)/openvswitch.tar.gz && mv openvswitch/* openvswitch/.[a-z]* . && rmdir openvswitch
73
74         # check we can get kernel module names
75         $(MAKE) -C datapath print-build-modules
76
77         # Prepare dkms.conf from the dkms.conf.in template
78         sed "s/__VERSION__/$(DEB_UPSTREAM_VERSION)/g; s/__MODULES__/$(shell $(MAKE) -C datapath print-build-modules | grep -v make)/" debian/dkms.conf.in > debian/$(PACKAGE_DKMS)/usr/src/$(PACKAGE)-$(DEB_UPSTREAM_VERSION)/dkms.conf
79
80         # We don't need the debian folder in there, just upstream sources...
81         rm -rf debian/$(PACKAGE_DKMS)/usr/src/$(PACKAGE)-$(DEB_UPSTREAM_VERSION)/debian
82         # We don't need the rhel stuff in there either
83         rm -rf debian/$(PACKAGE_DKMS)/usr/src/$(PACKAGE)-$(DEB_UPSTREAM_VERSION)/rhel
84         # And we should also clean useless license files, which are already
85         # described in our debian/copyright anyway.
86         rm -f debian/$(PACKAGE_DKMS)/usr/src/$(PACKAGE)-$(DEB_UPSTREAM_VERSION)/COPYING \
87                 debian/$(PACKAGE_DKMS)/usr/src/$(PACKAGE)-$(DEB_UPSTREAM_VERSION)/xenserver/LICENSE
88
89 override_dh_installinit:
90         dh_installinit -R
91
92 override_dh_strip:
93         dh_strip --dbg-package=openvswitch-dbg