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
|
#!/usr/bin/make -f
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
%:
dh $@
override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
# Run only Ruby tests during build
make spec
endif
override_dh_gencontrol:
debian/gen-deps >> debian/debci.substvars
dh_gencontrol
override_dh_installinit:
@true
execute_after_dh_installsystemd:
dh_installsystemd -pdebci-collector --name=debci-update
dh_installsystemd -pdebci-worker --name=debci-publisher
override_dh_install:
dh_install
debian/sanity-check
|