e360520ec6
Ironic deploy driver for Fuel Agent. Co-Authored-By: Vladyslav Drok <vdrok@mirantis.com> Co-Authored-By: Vasyl Saienko <vsaienko@mirantis.com> Change-Id: I99c9c8081a277431cf3fe65703059962cae3c746
56 lines
1.8 KiB
Makefile
Executable File
56 lines
1.8 KiB
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
PYTHONS:=$(shell pyversions -vr)
|
|
PYTHON3S:=$(shell py3versions -vr)
|
|
|
|
UPSTREAM_GIT = git://github.com/thomasgoirand/fuel-agent.git
|
|
include /usr/share/openstack-pkg-tools/pkgos.make
|
|
|
|
export OSLO_PACKAGE_VERSION=$(VERSION)
|
|
|
|
%:
|
|
dh $@ --buildsystem=python_distutils --with python2,systemd
|
|
|
|
override_dh_clean:
|
|
rm -rf build
|
|
dh_clean -O--buildsystem=python_distutils
|
|
|
|
|
|
# set -e && for i in $(PYTHONS) $(PYTHON3S) ; do \
|
|
|
|
override_dh_install:
|
|
set -e ; for pyvers in $(PYTHONS); do \
|
|
python$$pyvers setup.py install --install-layout=deb \
|
|
--root $(CURDIR)/debian/fuel-agent; \
|
|
done
|
|
cd contrib/ironic/ironic-fa-deploy/; \
|
|
set -e ; for pyvers in $(PYTHONS); do \
|
|
python$$pyvers ./setup.py install --install-layout=deb \
|
|
--root $(CURDIR)/debian/ironic-fa-deploy; \
|
|
done
|
|
dh_install --remaining-packages
|
|
|
|
override_dh_auto_test:
|
|
ifeq (,$(findstring nocheck, $(DEB_BUILD_OPTIONS)))
|
|
echo "===> Running tests"
|
|
set -e ; for i in 2.7 ; do \
|
|
PYMAJOR=$${i%%.*}; \
|
|
echo "===> Testing with python$$i (python$$PYMAJOR)" ; \
|
|
rm -rf .testrepository ; \
|
|
testr init ; \
|
|
TEMP_REZ=`mktemp -t` ; \
|
|
PYTHONPATH=$(CURDIR) PYTHON=python$$i testr run --subunit 'tests\.(?!.*OptsTestCase.test_entry_point.*)' | tee $$TEMP_REZ | subunit2pyunit ; \
|
|
cat $$TEMP_REZ | subunit-filter -s --no-passthrough | subunit-stats ; \
|
|
rm -f $$TEMP_REZ ; \
|
|
testr slowest ; \
|
|
done
|
|
endif
|
|
|
|
override_dh_installcatalogs:
|
|
override_dh_installemacsen override_dh_installifupdown:
|
|
override_dh_installinfo override_dh_installmenu override_dh_installmime:
|
|
override_dh_installmodules override_dh_installlogcheck:
|
|
override_dh_installpam override_dh_installppp override_dh_installudev override_dh_installwm:
|
|
override_dh_installxfonts override_dh_gconf override_dh_icons override_dh_perl override_dh_usrlocal:
|
|
override_dh_installgsettings:
|