2015-05-08 23:52:18 +00:00
|
|
|
PYTHON ?= /usr/bin/python3
|
2010-12-08 13:16:13 +00:00
|
|
|
DESTDIR ?= /
|
2018-09-16 07:49:51 +00:00
|
|
|
PREFIX ?= /usr
|
|
|
|
mandir ?= $(PREFIX)/share/man
|
2018-10-30 19:24:19 +00:00
|
|
|
DOCKER ?= docker
|
2019-03-26 22:46:03 +00:00
|
|
|
DOCS_VERSION ?= next
|
2008-10-05 05:51:17 +00:00
|
|
|
|
2010-12-02 12:36:22 +00:00
|
|
|
PKGNAME = lorax
|
|
|
|
VERSION = $(shell awk '/Version:/ { print $$2 }' $(PKGNAME).spec)
|
|
|
|
RELEASE = $(shell awk '/Release:/ { print $$2 }' $(PKGNAME).spec | sed -e 's|%.*$$||g')
|
2013-02-28 19:53:34 +00:00
|
|
|
TAG = lorax-$(VERSION)-$(RELEASE)
|
2010-12-02 12:36:22 +00:00
|
|
|
|
2018-10-30 19:24:19 +00:00
|
|
|
IMAGE_RELEASE = $(shell awk -F: '/FROM/ { print $$2}' Dockerfile.test)
|
2010-12-02 12:36:22 +00:00
|
|
|
|
|
|
|
default: all
|
2008-10-05 05:51:17 +00:00
|
|
|
|
2018-05-11 16:21:12 +00:00
|
|
|
src/composer/version.py: lorax.spec
|
|
|
|
echo "num = '$(VERSION)-$(RELEASE)'" > src/composer/version.py
|
|
|
|
|
2011-10-24 22:49:39 +00:00
|
|
|
src/pylorax/version.py: lorax.spec
|
|
|
|
echo "num = '$(VERSION)-$(RELEASE)'" > src/pylorax/version.py
|
|
|
|
|
2018-05-11 16:21:12 +00:00
|
|
|
all: src/pylorax/version.py src/composer/version.py
|
2008-10-05 05:51:17 +00:00
|
|
|
$(PYTHON) setup.py build
|
|
|
|
|
2010-12-02 12:36:22 +00:00
|
|
|
install: all
|
2018-09-16 07:49:51 +00:00
|
|
|
$(PYTHON) setup.py install --root=$(DESTDIR) --prefix=$(PREFIX)
|
2013-07-26 22:01:14 +00:00
|
|
|
mkdir -p $(DESTDIR)/$(mandir)/man1
|
2016-03-18 23:27:47 +00:00
|
|
|
install -m 644 docs/man/lorax.1 $(DESTDIR)/$(mandir)/man1
|
|
|
|
install -m 644 docs/man/livemedia-creator.1 $(DESTDIR)/$(mandir)/man1
|
2018-10-24 17:06:12 +00:00
|
|
|
install -m 644 docs/man/lorax-composer.1 $(DESTDIR)/$(mandir)/man1
|
|
|
|
install -m 644 docs/man/composer-cli.1 $(DESTDIR)/$(mandir)/man1
|
2018-07-31 13:39:38 +00:00
|
|
|
mkdir -p $(DESTDIR)/etc/bash_completion.d
|
2018-10-08 16:23:47 +00:00
|
|
|
install -m 644 etc/bash_completion.d/composer-cli $(DESTDIR)/etc/bash_completion.d
|
2008-10-05 05:51:17 +00:00
|
|
|
|
2014-05-08 18:43:00 +00:00
|
|
|
check:
|
|
|
|
@echo "*** Running pylint ***"
|
2015-05-08 23:20:39 +00:00
|
|
|
PYTHONPATH=$(PYTHONPATH):./src/ ./tests/pylint/runpylint.py
|
2014-05-08 18:43:00 +00:00
|
|
|
|
2017-10-05 12:44:39 +00:00
|
|
|
test:
|
|
|
|
@echo "*** Running tests ***"
|
|
|
|
PYTHONPATH=$(PYTHONPATH):./src/ $(PYTHON) -m nose -v --with-coverage --cover-erase --cover-branches \
|
2018-05-03 21:14:24 +00:00
|
|
|
--cover-package=pylorax --cover-inclusive \
|
2018-05-04 18:35:31 +00:00
|
|
|
./tests/pylorax/ ./tests/composer/
|
2018-01-12 16:57:55 +00:00
|
|
|
|
2017-10-05 12:44:39 +00:00
|
|
|
coverage3 report -m
|
|
|
|
[ -f "/usr/bin/coveralls" ] && [ -n "$(COVERALLS_REPO_TOKEN)" ] && coveralls || echo
|
2018-09-19 12:00:25 +00:00
|
|
|
|
|
|
|
./tests/test_cli.sh
|
|
|
|
|
2018-11-22 11:18:43 +00:00
|
|
|
# need `losetup`, which needs Docker to be in privileged mode (--privileged)
|
|
|
|
# but even so fails in Travis CI
|
|
|
|
test_images:
|
2019-02-21 14:34:37 +00:00
|
|
|
sudo -E ./tests/test_cli.sh tests/cli/test_compose_ext4-filesystem.sh \
|
2019-02-18 17:14:56 +00:00
|
|
|
tests/cli/test_compose_partitioned-disk.sh \
|
2019-02-21 14:34:37 +00:00
|
|
|
tests/cli/test_compose_tar.sh \
|
2019-02-27 13:01:28 +00:00
|
|
|
tests/cli/test_compose_qcow2.sh \
|
|
|
|
tests/cli/test_compose_live-iso.sh
|
2017-10-05 12:44:39 +00:00
|
|
|
|
2018-11-22 11:18:43 +00:00
|
|
|
test_aws:
|
|
|
|
sudo -E ./tests/test_cli.sh tests/cli/test_build_and_deploy_aws.sh
|
|
|
|
|
|
|
|
test_azure:
|
|
|
|
sudo -E ./tests/test_cli.sh tests/cli/test_build_and_deploy_azure.sh
|
|
|
|
|
|
|
|
test_openstack:
|
|
|
|
sudo -E ./tests/test_cli.sh tests/cli/test_build_and_deploy_openstack.sh
|
|
|
|
|
|
|
|
test_vmware:
|
|
|
|
sudo -E ./tests/test_cli.sh tests/cli/test_build_and_deploy_vmware.sh
|
2017-10-05 12:44:39 +00:00
|
|
|
|
2019-01-16 09:23:22 +00:00
|
|
|
clean_cloud_envs:
|
2019-01-25 16:52:21 +00:00
|
|
|
# clean beakerlib logs from previous executions
|
|
|
|
sudo rm -rf /var/tmp/beakerlib-*/
|
2019-01-16 09:23:22 +00:00
|
|
|
sudo -E ./tests/cleanup/remove_old_objects_aws.sh
|
2019-01-15 13:30:46 +00:00
|
|
|
sudo -E ./tests/cleanup/remove_old_objects_openstack.sh
|
2019-01-25 14:07:33 +00:00
|
|
|
sudo -E ./tests/cleanup/remove_old_objects_azure.sh
|
2019-02-21 14:28:48 +00:00
|
|
|
sudo -E ./tests/cleanup/remove_old_objects_vmware.sh
|
2019-01-25 16:52:21 +00:00
|
|
|
# make sure all cleanup scripts finished successfully
|
|
|
|
sudo sh -c 'grep RESULT_STRING /var/tmp/beakerlib-*/TestResults | grep -v PASS && exit 1 || exit 0'
|
2019-01-16 09:23:22 +00:00
|
|
|
|
2008-10-05 05:51:17 +00:00
|
|
|
clean:
|
2011-10-24 22:49:39 +00:00
|
|
|
-rm -rf build src/pylorax/version.py
|
2018-05-11 16:21:12 +00:00
|
|
|
-rm -rf build src/composer/version.py
|
2010-10-12 16:23:29 +00:00
|
|
|
|
2010-12-02 12:36:22 +00:00
|
|
|
tag:
|
|
|
|
git tag -f $(TAG)
|
|
|
|
|
2015-04-08 21:02:26 +00:00
|
|
|
docs:
|
2018-10-24 17:06:12 +00:00
|
|
|
$(MAKE) -C docs apidoc html man
|
2015-04-08 21:02:26 +00:00
|
|
|
|
2019-03-26 22:46:03 +00:00
|
|
|
# This is needed to reset the ownership of the new docs files after they are created in a container
|
|
|
|
set-docs-owner:
|
|
|
|
chown -R $(LOCAL_UID):$(LOCAL_GID) docs/
|
|
|
|
|
2013-08-01 16:48:28 +00:00
|
|
|
archive:
|
2010-12-02 12:36:22 +00:00
|
|
|
@git archive --format=tar --prefix=$(PKGNAME)-$(VERSION)/ $(TAG) > $(PKGNAME)-$(VERSION).tar
|
2013-02-28 20:11:05 +00:00
|
|
|
@gzip $(PKGNAME)-$(VERSION).tar
|
|
|
|
@echo "The archive is in $(PKGNAME)-$(VERSION).tar.gz"
|
2010-10-19 15:35:50 +00:00
|
|
|
|
2013-08-01 16:48:28 +00:00
|
|
|
dist: tag archive
|
|
|
|
scp $(PKGNAME)-$(VERSION).tar.gz fedorahosted.org:lorax
|
|
|
|
|
2010-12-02 12:36:22 +00:00
|
|
|
local:
|
2013-02-28 20:11:05 +00:00
|
|
|
@rm -rf $(PKGNAME)-$(VERSION).tar.gz
|
|
|
|
@rm -rf /var/tmp/$(PKGNAME)-$(VERSION)
|
|
|
|
@dir=$$PWD; cp -a $$dir /var/tmp/$(PKGNAME)-$(VERSION)
|
|
|
|
@rm -rf /var/tmp/$(PKGNAME)-$(VERSION)/.git
|
|
|
|
@dir=$$PWD; cd /var/tmp; tar --gzip -cSpf $$dir/$(PKGNAME)-$(VERSION).tar.gz $(PKGNAME)-$(VERSION)
|
|
|
|
@rm -rf /var/tmp/$(PKGNAME)-$(VERSION)
|
|
|
|
@echo "The archive is in $(PKGNAME)-$(VERSION).tar.gz"
|
2015-07-21 20:24:21 +00:00
|
|
|
|
2018-10-30 19:24:19 +00:00
|
|
|
test-in-copy:
|
2018-11-14 01:06:40 +00:00
|
|
|
rsync -aP --exclude=.git /lorax-ro/ /lorax/
|
2019-03-06 11:59:17 +00:00
|
|
|
make -C /lorax/ ci
|
2018-11-14 01:06:40 +00:00
|
|
|
cp /lorax/.coverage /test-results/
|
2018-10-30 19:24:19 +00:00
|
|
|
|
2018-04-26 07:20:55 +00:00
|
|
|
test-in-docker:
|
2018-10-30 19:24:19 +00:00
|
|
|
sudo $(DOCKER) build -t welder/lorax-tests:$(IMAGE_RELEASE) -f Dockerfile.test .
|
2019-02-25 22:37:57 +00:00
|
|
|
@mkdir -p `pwd`/.test-results
|
2018-11-14 01:06:40 +00:00
|
|
|
sudo $(DOCKER) run --rm -it -v `pwd`/.test-results/:/test-results -v `pwd`:/lorax-ro:ro --security-opt label=disable welder/lorax-tests:$(IMAGE_RELEASE) make test-in-copy
|
2018-04-26 07:20:55 +00:00
|
|
|
|
2018-09-06 21:08:49 +00:00
|
|
|
docs-in-docker:
|
2019-03-26 22:46:03 +00:00
|
|
|
sudo $(DOCKER) run -it --rm -v `pwd`:/lorax-ro:ro \
|
|
|
|
-v `pwd`/docs/:/lorax-ro/docs/ \
|
|
|
|
--env LORAX_VERSION=$(DOCS_VERSION) \
|
|
|
|
--env LOCAL_UID=`id -u` --env LOCAL_GID=`id -g` \
|
|
|
|
--security-opt label=disable welder/lorax-tests:$(IMAGE_RELEASE) make docs set-docs-owner
|
2018-09-06 21:08:49 +00:00
|
|
|
|
2017-10-05 12:44:39 +00:00
|
|
|
ci: check test
|
2018-03-15 19:20:22 +00:00
|
|
|
|
2018-11-30 09:11:32 +00:00
|
|
|
.PHONY: ci_after_success
|
|
|
|
ci_after_success:
|
|
|
|
# nothing to do here, but Jenkins expects this to be present, otherwise fails
|
|
|
|
|
2018-03-15 19:20:22 +00:00
|
|
|
.PHONY: docs
|