2012-08-28 05:06:39 +02:00
# WARN: gmake syntax
2012-04-21 18:01:15 +02:00
########################################################
# Makefile for Ansible
#
# useful targets:
2018-11-19 21:44:26 +01:00
# make clean ---------------- clean up
# make webdocs -------------- produce ansible doc at docs/docsite/_build/html
2012-04-21 18:01:15 +02:00
# make sdist ---------------- produce a tarball
2014-06-20 22:04:10 +02:00
# make deb-src -------------- produce a DEB source
2012-07-24 21:38:52 +02:00
# make deb ------------------ produce a DEB
2012-04-21 18:01:15 +02:00
# make docs ----------------- rebuild the manpages (results are checked in)
2018-06-29 20:12:01 +02:00
# make tests ---------------- run the tests (see https://docs.ansible.com/ansible/devel/dev_guide/testing_units.html for requirements)
2012-04-21 18:01:15 +02:00
########################################################
# variable section
2020-05-16 03:30:08 +02:00
NAME = ansible-base
2012-08-28 05:06:39 +02:00
OS = $( shell uname -s)
2018-02-06 04:54:10 +01:00
PREFIX ?= '/usr/local'
2019-08-21 08:53:35 +02:00
SDIST_DIR ?= 'dist'
2012-04-21 18:01:15 +02:00
2012-04-17 16:39:36 +02:00
# This doesn't evaluate until it's called. The -D argument is the
# directory of the target file ($@), kinda like `dirname`.
2018-03-27 01:28:28 +02:00
MANPAGES ?= $( patsubst %.rst.in,%,$( wildcard ./docs/man/man1/ansible*.1.rst.in) )
i f n e q ( $( shell which rst 2man 2>/dev /null ) , )
ASCII2MAN = rst2man $< $@
e l s e i f n e q ( $( shell which rst 2man .py 2>/dev /null ) , )
ASCII2MAN = rst2man.py $< $@
2013-03-05 19:59:39 +01:00
e l s e
2018-03-27 01:28:28 +02:00
ASCII2MAN = @echo " ERROR: rst2man from docutils command is not installed but is required to build $( MANPAGES) " && exit 1
2013-03-05 19:59:39 +01:00
e n d i f
2012-04-21 18:01:15 +02:00
2013-03-02 15:38:02 +01:00
PYTHON = python
2019-07-16 21:19:01 +02:00
GENERATE_CLI = hacking/build-ansible.py generate-man
2019-03-18 20:43:38 +01:00
2018-05-22 01:14:53 +02:00
# fetch version from project release.py as single source-of-truth
VERSION := $( shell $( PYTHON) packaging/release/versionhelper/version_helper.py --raw || echo error)
i f e q ( $( findstring error ,$ ( VERSION ) ) , e r r o r )
$( error "version_helper failed ")
e n d i f
2012-11-12 14:21:08 +01:00
# Get the branch information from git
2012-08-01 14:52:37 +02:00
i f n e q ( $( shell which git ) , )
2019-07-24 17:40:03 +02:00
GIT_DATE := $( shell git log -n 1 --format= "%ci" )
2014-08-06 13:00:14 +02:00
GIT_HASH := $( shell git log -n 1 --format= "%h" )
2015-09-30 15:32:09 +02:00
GIT_BRANCH := $( shell git rev-parse --abbrev-ref HEAD | sed 's/[-_.\/]//g' )
2014-08-06 13:00:14 +02:00
GITINFO = .$( GIT_HASH) .$( GIT_BRANCH)
e l s e
2015-12-11 03:50:11 +01:00
GITINFO = ""
2012-08-01 14:52:37 +02:00
e n d i f
2012-08-28 05:06:39 +02:00
2016-12-22 23:27:28 +01:00
i f e q ( $( shell echo $ ( OS ) | egrep -c 'Darwin |FreeBSD |OpenBSD |DragonFly ') , 1 )
2019-07-24 17:40:03 +02:00
DATE := $( shell date -j -r $( shell git log -n 1 --format= "%ct" ) +%Y%m%d%H%M)
2017-01-20 05:09:55 +01:00
CPUS ?= $( shell sysctl hw.ncpu| awk '{print $$2}' )
2012-09-19 11:56:55 +02:00
e l s e
2012-10-02 14:29:57 +02:00
DATE := $( shell date --utc --date= " $( GIT_DATE) " +%Y%m%d%H%M)
2017-01-20 05:09:55 +01:00
CPUS ?= $( shell nproc)
2012-08-28 05:06:39 +02:00
e n d i f
2012-08-01 14:52:37 +02:00
2014-06-20 22:04:10 +02:00
# DEB build parameters
DEBUILD_BIN ?= debuild
DEBUILD_OPTS = --source-option= "-I"
DPUT_BIN ?= dput
2014-06-21 01:58:52 +02:00
DPUT_OPTS ?=
2015-11-02 18:30:36 +01:00
DEB_DATE := $( shell LC_TIME = C date +"%a, %d %b %Y %T %z" )
2018-05-22 01:14:53 +02:00
DEB_VERSION ?= $( shell $( PYTHON) packaging/release/versionhelper/version_helper.py --debversion)
2014-06-20 22:04:10 +02:00
i f e q ( $( OFFICIAL ) , y e s )
2018-05-22 01:14:53 +02:00
DEB_RELEASE ?= $( shell $( PYTHON) packaging/release/versionhelper/version_helper.py --debrelease) ppa
2014-06-20 22:04:10 +02:00
# Sign OFFICIAL builds using 'DEBSIGN_KEYID'
# DEBSIGN_KEYID is required when signing
ifneq ( $( DEBSIGN_KEYID) ,)
DEBUILD_OPTS += -k$( DEBSIGN_KEYID)
endif
e l s e
2018-05-22 01:14:53 +02:00
DEB_RELEASE ?= 100.git$( DATE) $( GITINFO)
2014-06-20 22:04:10 +02:00
# Do not sign unofficial builds
DEBUILD_OPTS += -uc -us
DPUT_OPTS += -u
e n d i f
DEBUILD = $( DEBUILD_BIN) $( DEBUILD_OPTS)
DEB_PPA ?= ppa
# Choose the desired Ubuntu release: lucid precise saucy trusty
DEB_DIST ?= unstable
2016-10-26 23:24:15 +02:00
# pbuilder parameters
PBUILDER_ARCH ?= amd64
PBUILDER_CACHE_DIR = /var/cache/pbuilder
PBUILDER_BIN ?= pbuilder
PBUILDER_OPTS ?= --debootstrapopts --variant= buildd --architecture $( PBUILDER_ARCH) --debbuildopts -b
2017-01-11 21:03:26 +01:00
# ansible-test parameters
2018-09-21 20:38:22 +02:00
ANSIBLE_TEST ?= bin/ansible-test
2017-01-11 21:03:26 +01:00
TEST_FLAGS ?=
2013-05-11 12:13:29 +02:00
2017-01-11 21:03:26 +01:00
# ansible-test units parameters (make test / make test-py3)
PYTHON_VERSION ?= $( shell python2 -c 'import sys; print("%s.%s" % sys.version_info[:2])' )
PYTHON3_VERSION ?= $( shell python3 -c 'import sys; print("%s.%s" % sys.version_info[:2])' )
# ansible-test integration parameters (make integration)
IMAGE ?= centos7
TARGET ?=
2014-10-13 00:54:01 +02:00
2012-04-21 18:01:15 +02:00
########################################################
2017-08-10 23:35:58 +02:00
.PHONY : all
2012-02-28 10:15:52 +01:00
all : clean python
2017-08-10 23:35:58 +02:00
.PHONY : tests
2012-10-03 15:43:38 +02:00
tests :
2017-01-11 21:03:26 +01:00
$( ANSIBLE_TEST) units -v --python $( PYTHON_VERSION) $( TEST_FLAGS)
2014-10-02 19:41:52 +02:00
2017-08-10 23:35:58 +02:00
.PHONY : tests -py 3
2015-10-02 20:11:48 +02:00
tests-py3 :
2017-01-11 21:03:26 +01:00
$( ANSIBLE_TEST) units -v --python $( PYTHON3_VERSION) $( TEST_FLAGS)
2012-03-04 03:56:11 +01:00
2017-08-10 23:35:58 +02:00
.PHONY : integration
2016-09-22 22:31:43 +02:00
integration :
2017-01-11 21:03:26 +01:00
$( ANSIBLE_TEST) integration -v --docker $( IMAGE) $( TARGET) $( TEST_FLAGS)
2016-09-22 22:31:43 +02:00
2018-03-27 01:28:28 +02:00
# Regenerate %.1.rst if %.1.rst.in has been modified more
# recently than %.1.rst.
%.1.rst : %.1.rst .in
2012-04-17 16:39:36 +02:00
sed " s/%VERSION%/ $( VERSION) / " $< > $@
2018-03-27 01:28:28 +02:00
rm $<
2012-02-25 02:05:05 +01:00
2018-05-22 01:14:53 +02:00
# Regenerate %.1 if %.1.rst or release.py has been modified more
2018-03-27 01:28:28 +02:00
# recently than %.1. (Implicitly runs the %.1.rst recipe)
2018-05-22 01:14:53 +02:00
%.1 : %.1.rst lib /ansible /release .py
2012-02-25 02:05:05 +01:00
$( ASCII2MAN)
2017-08-10 23:35:58 +02:00
.PHONY : clean
2012-02-25 02:05:05 +01:00
clean :
2012-03-05 20:06:39 +01:00
@echo "Cleaning up distutils stuff"
2012-04-17 16:39:36 +02:00
rm -rf build
rm -rf dist
2020-03-30 20:00:45 +02:00
rm -rf lib/ansible*.egg-info/
2012-03-05 20:06:39 +01:00
@echo "Cleaning up byte compiled python stuff"
2012-04-17 16:39:36 +02:00
find . -type f -regex " .*\.py[co] $$ " -delete
2017-03-12 17:30:24 +01:00
find . -type d -name "__pycache__" -delete
2012-03-05 20:06:39 +01:00
@echo "Cleaning up editor backup files"
2015-10-26 15:16:21 +01:00
find . -type f -not -path ./test/units/inventory_test_data/group_vars/noparse/all.yml~ \( -name "*~" -or -name "#*" \) -delete
2012-03-06 04:47:30 +01:00
find . -type f \( -name "*.swp" \) -delete
2012-10-08 18:25:09 +02:00
@echo "Cleaning up manpage stuff"
2012-03-31 17:08:42 +02:00
find ./docs/man -type f -name "*.xml" -delete
2018-03-27 01:28:28 +02:00
find ./docs/man -type f -name "*.rst" -delete
2012-10-08 18:25:09 +02:00
find ./docs/man/man3 -type f -name "*.3" -delete
2017-03-23 06:11:40 +01:00
rm -f ./docs/man/man1/*
2012-03-06 04:44:39 +01:00
@echo "Cleaning up output from test runs"
2012-04-17 16:39:36 +02:00
rm -rf test/test_data
2017-06-23 18:44:03 +02:00
rm -rf shippable/
rm -rf logs/
rm -rf .cache/
rm -f test/units/.coverage*
2017-09-18 19:40:23 +02:00
rm -rf test/results/*/*
2017-06-23 18:44:03 +02:00
find test/ -type f -name '*.retry' -delete
2020-06-30 17:44:10 +02:00
@echo "Cleaning up symlink cache"
rm -f SYMLINK_CACHE.json
2012-04-24 01:17:01 +02:00
@echo "Cleaning up Debian building stuff"
rm -rf debian
rm -rf deb-build
2012-10-09 22:04:55 +02:00
rm -rf docs/json
rm -rf docs/js
2017-01-06 23:07:28 +01:00
@echo "Cleaning up docsite"
$( MAKE) -C docs/docsite clean
2012-02-25 02:05:05 +01:00
2017-08-10 23:35:58 +02:00
.PHONY : python
2012-03-16 01:21:10 +01:00
python :
2013-03-02 15:38:02 +01:00
$( PYTHON) setup.py build
2012-02-28 10:15:52 +01:00
2017-08-10 23:35:58 +02:00
.PHONY : install
2012-03-16 01:21:10 +01:00
install :
2013-03-02 15:38:02 +01:00
$( PYTHON) setup.py install
2012-02-28 10:15:52 +01:00
2018-02-06 04:54:10 +01:00
install_manpages :
gzip -9 $( wildcard ./docs/man/man1/ansible*.1)
cp $( wildcard ./docs/man/man1/ansible*.1.gz) $( PREFIX) /man/man1/
2018-10-08 21:47:39 +02:00
.PHONY : sdist_check
sdist_check :
2020-01-13 23:34:24 +01:00
$( PYTHON) -c 'import setuptools, sys; sys.exit(int(not (tuple(map(int, setuptools.__version__.split("."))) > (39, 2, 0))))'
2018-10-08 21:47:39 +02:00
$( PYTHON) packaging/sdist/check-link-behavior.py
2017-08-10 23:35:58 +02:00
.PHONY : sdist
2018-10-08 21:47:39 +02:00
sdist : sdist_check clean docs
2019-08-21 08:53:35 +02:00
_ANSIBLE_SDIST_FROM_MAKEFILE = 1 $( PYTHON) setup.py sdist --dist-dir= $( SDIST_DIR)
2019-03-18 20:43:38 +01:00
# Official releases generate the changelog as the last commit before the release.
# Snapshots shouldn't result in new checkins so the changelog is generated as
# part of creating the tarball.
.PHONY : snapshot
2019-03-19 21:23:55 +01:00
snapshot : sdist_check clean docs changelog
2019-08-21 08:53:35 +02:00
_ANSIBLE_SDIST_FROM_MAKEFILE = 1 $( PYTHON) setup.py sdist --dist-dir= $( SDIST_DIR)
2012-03-10 20:02:25 +01:00
2017-08-10 23:35:58 +02:00
.PHONY : sdist_upload
2016-01-13 16:17:43 +01:00
sdist_upload : clean docs
$( PYTHON) setup.py sdist upload 2>& 1 | tee upload.log
2018-06-05 03:07:14 +02:00
.PHONY : changelog
changelog :
2020-06-11 20:21:21 +02:00
PYTHONPATH = ./lib antsibull-changelog release -vv --use-ansible-doc && PYTHONPATH = ./lib antsibull-changelog generate -vv --use-ansible-doc
2018-05-22 01:14:53 +02:00
2017-08-10 23:35:58 +02:00
.PHONY : debian
2012-04-24 01:17:01 +02:00
debian : sdist
2014-06-20 22:04:10 +02:00
@for DIST in $( DEB_DIST) ; do \
mkdir -p deb-build/$$ { DIST} ; \
tar -C deb-build/$$ { DIST} -xvf dist/$( NAME) -$( VERSION) .tar.gz ; \
cp -a packaging/debian deb-build/$$ { DIST} /$( NAME) -$( VERSION) / ; \
2018-05-22 01:14:53 +02:00
sed -ie " s|%VERSION%| $( DEB_VERSION) |g;s|%RELEASE%| $( DEB_RELEASE) |;s|%DIST%| $$ {DIST}|g;s|%DATE%| $( DEB_DATE) |g " deb-build/$$ { DIST} /$( NAME) -$( VERSION) /debian/changelog ; \
2014-06-20 22:04:10 +02:00
done
2017-08-10 23:35:58 +02:00
.PHONY : deb
2016-10-26 23:24:15 +02:00
deb : deb -src
@for DIST in $( DEB_DIST) ; do \
PBUILDER_OPTS = " $( PBUILDER_OPTS) --distribution $$ {DIST} --basetgz $( PBUILDER_CACHE_DIR) / $$ {DIST}- $( PBUILDER_ARCH) -base.tgz --buildresult $( CURDIR) /deb-build/ $$ {DIST} " ; \
$( PBUILDER_BIN) create $$ { PBUILDER_OPTS} --othermirror " deb http://archive.ubuntu.com/ubuntu $$ {DIST} universe " ; \
$( PBUILDER_BIN) update $$ { PBUILDER_OPTS} ; \
2018-05-22 01:14:53 +02:00
$( PBUILDER_BIN) build $$ { PBUILDER_OPTS} deb-build/$$ { DIST} /$( NAME) _$( DEB_VERSION) -$( DEB_RELEASE) ~$$ { DIST} .dsc ; \
2016-10-26 23:24:15 +02:00
done
@echo "#############################################"
@echo "Ansible DEB artifacts:"
@for DIST in $( DEB_DIST) ; do \
2018-05-22 01:14:53 +02:00
echo deb-build/$$ { DIST} /$( NAME) _$( DEB_VERSION) -$( DEB_RELEASE) ~$$ { DIST} _amd64.changes ; \
2016-10-26 23:24:15 +02:00
done
@echo "#############################################"
# Build package outside of pbuilder, with locally installed dependencies.
# Install BuildRequires as noted in packaging/debian/control.
2017-08-10 23:35:58 +02:00
.PHONY : local_deb
2016-10-26 23:24:15 +02:00
local_deb : debian
2014-06-20 22:04:10 +02:00
@for DIST in $( DEB_DIST) ; do \
( cd deb-build/$$ { DIST} /$( NAME) -$( VERSION) / && $( DEBUILD) -b) ; \
done
@echo "#############################################"
@echo "Ansible DEB artifacts:"
@for DIST in $( DEB_DIST) ; do \
2018-05-22 01:14:53 +02:00
echo deb-build/$$ { DIST} /$( NAME) _$( DEB_VERSION) -$( DEB_RELEASE) ~$$ { DIST} _amd64.changes ; \
2014-06-20 22:04:10 +02:00
done
@echo "#############################################"
2017-08-10 23:35:58 +02:00
.PHONY : deb -src
2014-06-20 22:04:10 +02:00
deb-src : debian
@for DIST in $( DEB_DIST) ; do \
( cd deb-build/$$ { DIST} /$( NAME) -$( VERSION) / && $( DEBUILD) -S) ; \
done
@echo "#############################################"
@echo "Ansible DEB artifacts:"
@for DIST in $( DEB_DIST) ; do \
2018-05-22 03:21:16 +02:00
echo deb-build/$$ { DIST} /$( NAME) _$( DEB_VERSION) -$( DEB_RELEASE) ~$$ { DIST} _source.changes ; \
2014-06-20 22:04:10 +02:00
done
@echo "#############################################"
2017-08-10 23:35:58 +02:00
.PHONY : deb -upload
2014-06-20 22:04:10 +02:00
deb-upload : deb
@for DIST in $( DEB_DIST) ; do \
2018-05-22 03:21:16 +02:00
$( DPUT_BIN) $( DPUT_OPTS) $( DEB_PPA) deb-build/$$ { DIST} /$( NAME) _$( DEB_VERSION) -$( DEB_RELEASE) ~$$ { DIST} _amd64.changes ; \
2014-06-20 22:04:10 +02:00
done
2017-08-10 23:35:58 +02:00
.PHONY : deb -src -upload
2014-06-20 22:04:10 +02:00
deb-src-upload : deb -src
@for DIST in $( DEB_DIST) ; do \
2018-05-22 03:21:16 +02:00
$( DPUT_BIN) $( DPUT_OPTS) $( DEB_PPA) deb-build/$$ { DIST} /$( NAME) _$( DEB_VERSION) -$( DEB_RELEASE) ~$$ { DIST} _source.changes ; \
2014-06-20 22:04:10 +02:00
done
2012-04-21 17:56:06 +02:00
2017-08-10 23:35:58 +02:00
.PHONY : epub
2017-05-01 19:40:49 +02:00
epub :
2018-05-25 05:30:14 +02:00
( cd docs/docsite/; CPUS = $( CPUS) $( MAKE) epub)
2012-04-21 17:56:06 +02:00
2017-05-01 19:40:49 +02:00
# for arch or gentoo, read instructions in the appropriate 'packaging' subdirectory directory
2017-08-10 23:35:58 +02:00
.PHONY : webdocs
2016-07-24 00:15:45 +02:00
webdocs :
2018-05-25 05:30:14 +02:00
( cd docs/docsite/; CPUS = $( CPUS) $( MAKE) docs)
2013-04-12 23:41:16 +02:00
2020-05-29 18:48:53 +02:00
.PHONY : linkcheckdocs
linkcheckdocs :
( cd docs/docsite/; CPUS = $( CPUS) $( MAKE) linkcheckdocs)
2018-03-27 01:28:28 +02:00
.PHONY : generate_rst
generate_rst : lib /ansible /cli /*.py
2017-09-07 21:44:20 +02:00
mkdir -p ./docs/man/man1/ ; \
2020-07-17 22:07:35 +02:00
$( GENERATE_CLI) --template-file= docs/templates/man.j2 --output-dir= docs/man/man1/ --output-format man lib/ansible/cli/*.py
2017-09-07 21:44:20 +02:00
2017-03-30 19:13:05 +02:00
2018-03-27 01:28:28 +02:00
docs : generate_rst
2018-05-25 05:30:14 +02:00
$( MAKE) $( MANPAGES)
2016-07-24 00:15:45 +02:00
2017-08-10 23:35:58 +02:00
.PHONY : alldocs
2016-07-24 00:15:45 +02:00
alldocs : docs webdocs
2017-03-23 06:11:40 +01:00
2017-07-12 14:51:38 +02:00
version :
@echo $( VERSION)