2013-06-15 12:10:11 +04:00
PYTHON = python
SITELIB = $( shell $( PYTHON) -c "from distutils.sysconfig import get_python_lib; print get_python_lib()" )
2014-04-29 19:19:14 +04:00
OFFICIAL ?= no
2014-01-07 23:14:07 +04:00
PACKER ?= packer
2014-03-19 19:29:02 +04:00
GRUNT ?= $( shell [ -t 0 ] && echo "grunt" || echo "grunt --no-color" )
2015-07-08 22:38:58 +03:00
TESTEM ?= ./node_modules/.bin/testem
2015-07-16 23:03:46 +03:00
BROCCOLI_BIN ?= ./node_modules/.bin/broccoli
2015-07-20 18:56:02 +03:00
MOCHA_BIN ?= ./node_modules/.bin/mocha
2015-02-09 22:29:48 +03:00
NODE ?= node
2013-06-24 21:03:33 +04:00
2015-07-20 18:56:02 +03:00
CLIENT_TEST_DIR ?= build_test
2015-07-16 23:03:46 +03:00
2013-06-24 21:03:33 +04:00
# Get the branch information from git
GIT_DATE := $( shell git log -n 1 --format= "%ai" )
2013-06-26 03:46:12 +04:00
DATE := $( shell date -u +%Y%m%d%H%M)
2013-06-24 21:03:33 +04:00
2014-10-17 17:01:45 +04:00
NAME = ansible-tower
VERSION = $( shell $( PYTHON) -c "from awx import __version__; print(__version__.split('-')[0])" )
GIT_REMOTE_URL = $( shell git config --get remote.origin.url)
2014-10-28 22:20:33 +03:00
BUILD = 0.git$( DATE)
i f e q ( $( OFFICIAL ) , y e s )
RELEASE ?= 1
e l s e
RELEASE ?= $( BUILD)
e n d i f
2014-01-28 18:58:44 +04:00
2014-02-03 22:22:58 +04:00
# Allow AMI license customization
2015-04-24 17:44:22 +03:00
AWS_INSTANCE_COUNT ?= 0
2014-01-28 18:58:44 +04:00
2015-05-26 18:03:36 +03:00
# GPG signature parameters (BETA key not yet used)
GPG_RELEASE = 442667A9
GPG_BETA = D7B00447
GPG_RELEASE_FILE = RPM-GPG-KEY-ansible-release
GPG_BETA_FILE = RPM-GPG-KEY-ansible-beta
# Determine GPG key for RPM signing
i f e q ( $( OFFICIAL ) , y e s )
GPG_KEY = $( GPG_RELEASE)
GPG_FILE = $( GPG_RELEASE_FILE)
e n d i f
2014-10-17 17:01:45 +04:00
# TAR build parameters
2015-05-26 18:03:36 +03:00
i f e q ( $( OFFICIAL ) , y e s )
2014-10-17 17:01:45 +04:00
SETUP_TAR_NAME = $( NAME) -setup-$( VERSION)
SDIST_TAR_NAME = $( NAME) -$( VERSION)
2014-12-02 19:29:49 +03:00
PACKER_BUILD_OPTS = -var-file= vars-release.json
2015-05-26 18:03:36 +03:00
e l s e
SETUP_TAR_NAME = $( NAME) -setup-$( VERSION) -$( BUILD)
SDIST_TAR_NAME = $( NAME) -$( VERSION) -$( BUILD)
PACKER_BUILD_OPTS = -var-file= vars-nightly.json
2013-06-24 21:03:33 +04:00
e n d i f
2014-10-17 17:01:45 +04:00
SDIST_TAR_FILE = $( SDIST_TAR_NAME) .tar.gz
2014-10-28 22:20:33 +03:00
SETUP_TAR_FILE = $( SETUP_TAR_NAME) .tar.gz
2014-11-18 17:31:43 +03:00
SETUP_TAR_LINK = $( NAME) -setup-latest.tar.gz
2014-10-17 17:01:45 +04:00
# DEB build parameters
DEBUILD_BIN ?= debuild
DEBUILD_OPTS = --source-option= "-I"
DPUT_BIN ?= dput
DPUT_OPTS ?=
i f e q ( $( OFFICIAL ) , y e s )
DEB_DIST ?= stable
# 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
DEB_DIST ?= unstable
# Do not sign development builds
DEBUILD_OPTS += -uc -us
DPUT_OPTS += -u
e n d i f
DEBUILD = $( DEBUILD_BIN) $( DEBUILD_OPTS)
DEB_PPA ?= reprepro
# RPM build parameters
RPM_SPECDIR = packaging/rpm
RPM_SPEC = $( RPM_SPECDIR) /$( NAME) .spec
2014-10-21 23:50:24 +04:00
RPM_DIST ?= $( shell rpm --eval '%{?dist}' 2>/dev/null)
2014-10-28 22:20:33 +03:00
RPM_NVR = $( NAME) -$( VERSION) -$( RELEASE) $( RPM_DIST)
2014-05-09 16:59:02 +04:00
MOCK_BIN ?= mock
MOCK_CFG ?=
2014-10-02 21:26:32 +04:00
.PHONY : clean rebase push requirements requirements_pypi requirements_jenkins \
develop refresh adduser syncdb migrate dbchange dbshell runserver celeryd \
2015-01-29 21:31:55 +03:00
receiver test test_coverage coverage_html ui_analysis_report test_ui test_jenkins dev_build \
2015-05-26 18:03:36 +03:00
release_build release_clean sdist rpmtar mock-rpm mock-srpm rpm-sign \
2015-07-23 00:15:55 +03:00
deb deb-src debian reprepro setup_tarball sync_ui node-tests \
2015-04-24 17:44:22 +03:00
virtualbox-ovf virtualbox-centos-7 virtualbox-centos-6
2014-10-28 22:20:33 +03:00
# Remove setup build files
clean-tar :
rm -rf tar-build
2013-06-20 23:53:10 +04:00
2014-10-23 00:41:24 +04:00
# Remove rpm build files
clean-rpm :
rm -rf rpm-build
# Remove debian build files
clean-deb :
rm -rf deb-build reprepro
# Remove grunt build files
clean-grunt :
2015-02-05 23:27:16 +03:00
rm -f package.json Gruntfile.js Brocfile.js bower.json
2014-10-23 00:41:24 +04:00
rm -rf node_modules
# Remove UI build files
clean-ui :
2015-07-20 18:33:09 +03:00
rm -rf DEBUG
rm -rf awx/ui/build_test
rm -rf awx/ui/static/
2015-02-27 19:21:32 +03:00
rm -rf awx/ui/dist
2014-10-23 00:41:24 +04:00
2015-04-24 17:44:22 +03:00
# Remove packer artifacts
clean-packer :
rm -rf packer_cache
rm -rf packaging/packer/packer_cache
rm -rf packaging/packer/output-virtualbox-iso/
rm -f packaging/packer/ansible-tower-*.box
rm -rf packaging/packer/ansible-tower*-ova
rm -f Vagrantfile
2014-10-23 00:41:24 +04:00
# Remove temporary build files, compiled Python files.
2015-04-24 17:44:22 +03:00
clean : clean -rpm clean -deb clean -grunt clean -ui clean -tar clean -packer
2014-10-23 00:41:24 +04:00
rm -rf dist/*
rm -rf build $( NAME) -$( VERSION) *.egg-info
2013-03-13 21:09:36 +04:00
find . -type f -regex " .*\.py[co] $$ " -delete
2013-06-20 23:53:10 +04:00
# Fetch from origin, rebase local commits on top of origin commits.
2013-03-13 23:28:30 +04:00
rebase :
git pull --rebase origin master
2013-06-20 23:53:10 +04:00
# Push changes to origin.
2013-03-14 00:06:19 +04:00
push :
2013-06-20 23:53:10 +04:00
git push origin master
2013-03-13 23:15:35 +04:00
2013-06-20 23:53:10 +04:00
# Install third-party requirements needed for development environment (using
# locally downloaded packages).
requirements :
2013-09-25 05:40:53 +04:00
@if [ " $( VIRTUAL_ENV) " ] ; then \
2015-01-30 18:52:35 +03:00
( cd requirements && pip install --no-index setuptools-12.0.5.tar.gz) ; \
2014-09-10 22:35:53 +04:00
( cd requirements && pip install --no-index Django-1.6.7.tar.gz) ; \
2013-09-25 05:40:53 +04:00
( cd requirements && pip install --no-index -r dev_local.txt) ; \
2013-09-30 04:36:46 +04:00
$( PYTHON) fix_virtualenv_setuptools.py; \
2013-09-25 05:40:53 +04:00
else \
( cd requirements && sudo pip install --no-index -r dev_local.txt) ; \
fi
2013-06-20 23:53:10 +04:00
# Install third-party requirements needed for development environment
# (downloading from PyPI if necessary).
requirements_pypi :
2013-09-25 05:40:53 +04:00
@if [ " $( VIRTUAL_ENV) " ] ; then \
2015-01-30 18:52:35 +03:00
pip install setuptools = = 12.0.5; \
2014-09-10 22:35:53 +04:00
pip install Django\> = 1.6.7,\< 1.7; \
2013-09-25 05:40:53 +04:00
pip install -r requirements/dev.txt; \
2013-09-30 04:36:46 +04:00
$( PYTHON) fix_virtualenv_setuptools.py; \
2013-09-25 05:40:53 +04:00
else \
sudo pip install -r requirements/dev.txt; \
fi
2013-06-20 23:53:10 +04:00
2014-09-10 23:25:29 +04:00
# Install third-party requirements needed for running unittests in jenkins
# (using locally downloaded packages).
2014-10-02 23:19:33 +04:00
requirements_jenkins :
2014-09-10 23:25:29 +04:00
@if [ " $( VIRTUAL_ENV) " ] ; then \
2014-10-02 23:19:33 +04:00
( cd requirements && pip install --no-index distribute-0.7.3.zip || true ) ; \
( cd requirements && pip install --no-index pip-1.5.4.tar.gz || true ) ; \
else \
( cd requirements && sudo pip install --no-index distribute-0.7.3.zip || true ) ; \
( cd requirements && sudo pip install --no-index pip-1.5.4.tar.gz || true ) ; \
fi
$( MAKE) requirements
@if [ " $( VIRTUAL_ENV) " ] ; then \
2015-02-06 17:43:32 +03:00
( cd requirements && pip install -r jenkins.txt) ; \
2014-09-10 23:25:29 +04:00
$( PYTHON) fix_virtualenv_setuptools.py; \
else \
2015-02-06 17:43:32 +03:00
( cd requirements && sudo pip install -r jenkins.txt) ; \
2014-09-10 23:25:29 +04:00
fi
2015-03-10 19:36:33 +03:00
npm install csslint jshint
2014-09-10 23:25:29 +04:00
2014-01-29 22:49:29 +04:00
# "Install" ansible-tower package in development mode. Creates link to working
2013-06-23 21:21:02 +04:00
# copy in site-packages and installs awx-manage command.
2013-05-25 01:55:03 +04:00
develop :
2013-09-25 05:40:53 +04:00
@if [ " $( VIRTUAL_ENV) " ] ; then \
2014-01-29 22:49:29 +04:00
pip uninstall -y awx; \
2013-09-25 05:40:53 +04:00
$( PYTHON) setup.py develop; \
else \
2014-01-29 22:49:29 +04:00
sudo pip uninstall -y awx; \
2013-09-25 05:40:53 +04:00
sudo $( PYTHON) setup.py develop; \
2014-11-11 23:18:39 +03:00
fi
# Do any one-time init tasks.
init :
@if [ " $( VIRTUAL_ENV) " ] ; then \
2014-12-02 20:20:03 +03:00
awx-manage register_instance --primary --hostname= 127.0.0.1; \
2014-11-11 23:18:39 +03:00
else \
2014-12-02 20:20:03 +03:00
sudo awx-manage register_instance --primary --hostname= 127.0.0.1; \
2013-09-25 05:40:53 +04:00
fi
2013-05-25 01:55:03 +04:00
2013-06-20 23:53:10 +04:00
# Refresh development environment after pulling new code.
refresh : clean requirements develop migrate
2013-05-22 01:39:34 +04:00
2013-06-20 23:53:10 +04:00
# Create Django superuser.
2013-03-14 01:20:50 +04:00
adduser :
2013-09-25 05:40:53 +04:00
$( PYTHON) manage.py createsuperuser
2013-03-14 01:20:50 +04:00
2013-06-20 23:53:10 +04:00
# Create initial database tables (excluding migrations).
2013-03-01 04:52:14 +04:00
syncdb :
2013-09-25 05:40:53 +04:00
$( PYTHON) manage.py syncdb --noinput
2013-03-01 04:52:14 +04:00
2013-06-20 23:53:10 +04:00
# Create database tables and apply any new migrations.
2013-05-22 01:39:34 +04:00
migrate : syncdb
2013-09-25 05:40:53 +04:00
$( PYTHON) manage.py migrate --noinput
2013-03-13 23:15:35 +04:00
2013-06-20 23:53:10 +04:00
# Run after making changes to the models to create a new migration.
dbchange :
2013-09-25 05:40:53 +04:00
$( PYTHON) manage.py schemamigration main v14_changes --auto
2013-06-20 23:53:10 +04:00
2013-06-23 21:21:02 +04:00
# access database shell, asks for password
2013-03-13 23:15:35 +04:00
dbshell :
2013-12-21 03:16:52 +04:00
sudo -u postgres psql -d awx-dev
2013-03-01 04:52:14 +04:00
2014-05-02 23:26:05 +04:00
server_noattach :
2014-03-19 21:51:48 +04:00
tmux new-session -d -s tower 'exec make runserver'
tmux rename-window 'Tower'
tmux select -window -t tower:0
tmux split-window -v 'exec make celeryd'
tmux split-window -h 'exec make taskmanager'
2015-04-23 20:34:56 +03:00
tmux new-window 'exec make receiver'
tmux select -window -t tower:1
tmux rename-window 'Extra Services'
tmux split-window -v 'exec make socketservice'
tmux split-window -h 'exec make factcacher'
2014-05-02 23:26:05 +04:00
server : server_noattach
2014-03-19 21:51:48 +04:00
tmux -2 attach-session -t tower
2015-02-13 18:30:01 +03:00
# Use with iterm2's native tmux protocol support
2015-02-10 20:34:52 +03:00
servercc : server_noattach
tmux -2 -CC attach-session -t tower
2013-06-20 23:53:10 +04:00
# Run the built-in development webserver (by default on http://localhost:8013).
runserver :
2013-09-25 05:40:53 +04:00
$( PYTHON) manage.py runserver
2013-06-20 23:53:10 +04:00
# Run to start the background celery worker for development.
celeryd :
2014-02-04 02:04:56 +04:00
$( PYTHON) manage.py celeryd -l DEBUG -B --autoscale= 20,2 -Ofair
2013-06-20 23:53:10 +04:00
2014-02-19 00:16:39 +04:00
# Run to start the zeromq callback receiver
receiver :
$( PYTHON) manage.py run_callback_receiver
2014-03-12 22:09:00 +04:00
taskmanager :
$( PYTHON) manage.py run_task_system
2014-04-16 23:26:52 +04:00
socketservice :
$( PYTHON) manage.py run_socketio_service
2015-04-23 20:34:56 +03:00
factcacher :
$( PYTHON) manage.py run_fact_cache_receiver
2015-05-20 22:26:44 +03:00
reports :
mkdir -p $@
2014-04-23 21:55:09 +04:00
2015-05-20 22:26:44 +03:00
pep8 : reports
@( set -o pipefail && $@ | tee reports/$@ .report)
2014-04-23 21:55:09 +04:00
2015-05-20 22:26:44 +03:00
flake8 : reports
@$@ --output-file= reports/$@ .report
pyflakes : reports
@( set -o pipefail && $@ | tee reports/$@ .report)
pylint : reports
@( set -o pipefail && $@ | reports/$@ .report)
check : flake 8 pep 8 # pyflakes pylint
2015-02-05 18:40:22 +03:00
2013-09-25 05:40:53 +04:00
# Run all API unit tests.
2013-03-01 04:52:14 +04:00
test :
2014-09-10 21:17:35 +04:00
$( PYTHON) manage.py test -v2 awx.main.tests
2013-05-22 01:39:34 +04:00
2013-09-25 05:40:53 +04:00
# Run all API unit tests with coverage enabled.
2013-05-22 03:08:46 +04:00
test_coverage :
2014-09-10 21:17:35 +04:00
coverage run manage.py test -v2 awx.main.tests
2013-05-22 03:08:46 +04:00
2013-06-20 23:53:10 +04:00
# Output test coverage as HTML (into htmlcov directory).
2013-05-22 03:08:46 +04:00
coverage_html :
coverage html
2013-09-25 05:40:53 +04:00
# Run API unit tests across multiple Python/Django versions with Tox.
test_tox :
tox -v
# Run unit tests to produce output for Jenkins.
test_jenkins :
2014-10-02 21:26:32 +04:00
$( PYTHON) manage.py jenkins -v2 --enable-coverage --project-apps-tests
2013-09-25 05:40:53 +04:00
2015-07-28 22:55:00 +03:00
# UI TASKS
# --------------------------------------
2015-07-23 22:38:14 +03:00
Gruntfile.js : packaging /node /Gruntfile .js
2015-02-11 18:15:32 +03:00
cp $< $@
2014-07-07 17:41:44 +04:00
2015-07-23 22:38:14 +03:00
Brocfile.js : packaging /node /Brocfile .js
2015-02-11 18:15:32 +03:00
cp $< $@
2015-02-05 23:27:16 +03:00
2015-07-23 22:38:14 +03:00
bower.json : packaging /node /bower .json
2015-02-11 18:15:32 +03:00
cp $< $@
2014-07-07 17:41:44 +04:00
2015-07-23 22:38:14 +03:00
package.json : packaging /node /package .template
2015-02-11 18:15:32 +03:00
sed -e 's#%NAME%#$(NAME)#;s#%VERSION%#$(VERSION)#;s#%GIT_REMOTE_URL%#$(GIT_REMOTE_URL)#;' $< > $@
2014-02-26 17:36:32 +04:00
2014-02-17 19:18:33 +04:00
# Update local npm install
2015-02-11 18:15:32 +03:00
node_modules : package .json
2014-02-17 19:18:33 +04:00
npm install
2015-02-11 18:15:32 +03:00
touch $@
2015-07-16 23:03:46 +03:00
awx/ui/% : node_modules clean -ui Brocfile .js bower .json
$( BROCCOLI_BIN) build $@ -- $( UI_FLAGS)
2014-02-17 19:18:33 +04:00
2015-07-28 22:55:00 +03:00
# Concatenated, non-minified build; contains debug code and sourcemaps; does not include any tests
devjs : awx /ui /static
# Concatenated, minified, compressed (production) build with no sourcemaps or tests
minjs : UI_FLAGS =--silent --compress --no -docs --no -debug --no -sourcemaps $( EXTRA_UI_FLAGS )
minjs : awx /ui /static node_modules clean -ui Brocfile .js
# Performs build to awx/ui/build_test and runs node tests via mocha
2015-07-20 18:56:02 +03:00
testjs : UI_FLAGS =--node -tests --no -concat --no -styles $( EXTRA_UI_FLAGS )
2015-07-23 00:15:55 +03:00
testjs : awx /ui /build_test node -tests
2015-07-28 22:55:00 +03:00
# Performs minified, compressed build to awx/ui/static and runs browsers tests with testem ci
testjs_ci : UI_FLAGS =--compress --no -docs --no -debug --browser -tests $( EXTRA_UI_FLAGS )
testjs_ci : awx /ui /static browser -tests
# Runs node tests via mocha without building
2015-07-23 00:15:55 +03:00
node-tests :
NODE_PATH = awx/ui/build_test $( MOCHA_BIN) --full-trace $( shell find awx/ui/build_test -name '*-test.js' )
2015-07-20 18:56:02 +03:00
2015-07-28 22:55:00 +03:00
# Runs browser tests using settings from `testem.yml`
browser-tests :
PATH = ./node_modules/.bin:$( PATH) $( TESTEM) ci --file testem.yml -p 7359 -R xunit
2015-02-09 17:45:23 +03:00
2014-02-17 19:18:33 +04:00
# Check .js files for errors and lint
2015-02-11 18:15:32 +03:00
jshint : node_modules Gruntfile .js
2014-08-28 20:01:35 +04:00
$( GRUNT) $@
2015-07-28 22:55:00 +03:00
# Generate UI code documentation
2015-03-25 00:27:03 +03:00
ngdocs : devjs Gruntfile .js
2014-08-28 20:01:35 +04:00
$( GRUNT) $@
2013-09-25 05:40:53 +04:00
2015-07-28 22:55:00 +03:00
# Launch watcher for build process
sync_ui : node_modules Brocfile .js
$( NODE) tools/ui/timepiece.js awx/ui/static $( WATCHER_FLAGS) -- $( UI_FLAGS)
# Build code complexity report for UI code
ui_analysis_report : reports /ui_code node_modules Gruntfile .js
$( GRUNT) plato:report
# Non-concatenated, non-minified build with no tests, no debug code, no sourcemaps for plato reports
reports/ui_code : node_modules clean -ui Brocfile .js bower .json Gruntfile .js
rm -rf reports/ui_code
$( BROCCOLI_BIN) build reports/ui_code -- --no-concat --no-debug --no-styles --no-sourcemaps
# END UI TASKS
# --------------------------------------
2013-06-20 23:53:10 +04:00
# Build a pip-installable package into dist/ with a timestamped version number.
2014-02-17 19:18:33 +04:00
dev_build :
2013-09-25 05:40:53 +04:00
$( PYTHON) setup.py dev_build
2013-05-22 01:39:34 +04:00
2013-06-20 23:53:10 +04:00
# Build a pip-installable package into dist/ with the release version number.
2013-05-22 01:39:34 +04:00
release_build :
2013-09-25 05:40:53 +04:00
$( PYTHON) setup.py release_build
2014-10-28 22:20:33 +03:00
# Build setup tarball
tar-build/$(SETUP_TAR_FILE) :
@mkdir -p tar-build
@cp -a setup tar-build/$( SETUP_TAR_NAME)
@cd tar-build/$( SETUP_TAR_NAME) && sed -e 's#%NAME%#$(NAME)#;s#%VERSION%#$(VERSION)#;s#%RELEASE%#$(RELEASE)#;' group_vars/all.in > group_vars/all
@cd tar-build && tar -czf $( SETUP_TAR_FILE) --exclude "*/all.in" $( SETUP_TAR_NAME) /
2014-11-18 17:31:43 +03:00
@ln -sf $( SETUP_TAR_FILE) tar-build/$( SETUP_TAR_LINK)
2014-10-17 17:01:45 +04:00
@echo "#############################################"
@echo "Setup artifacts:"
2014-10-28 22:20:33 +03:00
@echo tar-build/$( SETUP_TAR_FILE)
2014-11-18 17:31:43 +03:00
@echo tar-build/$( SETUP_TAR_LINK)
2014-10-17 17:01:45 +04:00
@echo "#############################################"
2014-10-28 22:20:33 +03:00
setup_tarball : tar -build /$( SETUP_TAR_FILE )
2013-05-26 19:01:00 +04:00
2013-06-11 01:21:04 +04:00
release_clean :
2013-05-26 19:01:00 +04:00
-( rm *.tar)
2013-06-11 01:21:04 +04:00
-( rm -rf ( $RELEASE ) )
2013-06-15 12:10:11 +04:00
2014-10-17 17:01:45 +04:00
dist/$(SDIST_TAR_FILE) :
2014-10-19 23:05:54 +04:00
BUILD = " $( BUILD) " $( PYTHON) setup.py sdist
2014-05-22 19:25:50 +04:00
2014-10-17 17:01:45 +04:00
sdist : minjs dist /$( SDIST_TAR_FILE )
2013-06-15 12:10:11 +04:00
2015-05-26 18:03:36 +03:00
rpm-build :
2014-04-23 21:52:08 +04:00
mkdir -p rpm-build
2015-05-26 18:03:36 +03:00
rpm-build/$(SDIST_TAR_FILE) : rpm -build dist /$( SDIST_TAR_FILE )
2014-10-17 17:01:45 +04:00
cp packaging/rpm/$( NAME) .spec rpm-build/
2014-04-23 21:52:08 +04:00
cp packaging/rpm/$( NAME) .te rpm-build/
2014-11-25 17:22:02 +03:00
cp packaging/rpm/$( NAME) .sysconfig rpm-build/
2014-10-20 23:00:00 +04:00
cp packaging/remove_tower_source.py rpm-build/
2013-06-26 16:10:17 +04:00
if [ " $( OFFICIAL) " != "yes" ] ; then \
2014-10-17 17:01:45 +04:00
( cd dist/ && tar zxf $( SDIST_TAR_FILE) ) ; \
( cd dist/ && mv $( NAME) -$( VERSION) -$( BUILD) $( NAME) -$( VERSION) ) ; \
( cd dist/ && tar czf ../rpm-build/$( SDIST_TAR_FILE) $( NAME) -$( VERSION) ) ; \
ln -sf $( SDIST_TAR_FILE) rpm-build/$( NAME) -$( VERSION) .tar.gz ; \
else \
2014-11-15 00:11:39 +03:00
cp -a dist/$( SDIST_TAR_FILE) rpm-build/ ; \
2013-06-26 16:10:17 +04:00
fi
2014-10-17 17:01:45 +04:00
2014-10-23 00:41:24 +04:00
rpmtar : sdist rpm -build /$( SDIST_TAR_FILE )
2014-10-17 17:01:45 +04:00
rpm-build/$(RPM_NVR).src.rpm : /etc /mock /$( MOCK_CFG ) .cfg
$( MOCK_BIN) -r $( MOCK_CFG) --resultdir rpm-build --buildsrpm --spec rpm-build/$( NAME) .spec --sources rpm-build \
2014-10-28 22:20:33 +03:00
--define " tower_version $( VERSION) " --define " tower_release $( RELEASE) "
2014-10-17 17:01:45 +04:00
@echo "#############################################"
@echo "SRPM artifacts:"
@echo rpm-build/$( RPM_NVR) .src.rpm
@echo "#############################################"
mock-srpm : rpmtar rpm -build /$( RPM_NVR ) .src .rpm
rpm-build/$(RPM_NVR).noarch.rpm : rpm -build /$( RPM_NVR ) .src .rpm
$( MOCK_BIN) -r $( MOCK_CFG) --resultdir rpm-build --rebuild rpm-build/$( RPM_NVR) .src.rpm \
2014-10-28 22:20:33 +03:00
--define " tower_version $( VERSION) " --define " tower_release $( RELEASE) "
2014-10-17 17:01:45 +04:00
@echo "#############################################"
@echo "RPM artifacts:"
@echo rpm-build/$( RPM_NVR) .noarch.rpm
@echo "#############################################"
2014-10-17 23:46:25 +04:00
mock-rpm : rpmtar rpm -build /$( RPM_NVR ) .noarch .rpm
2014-10-17 17:01:45 +04:00
2015-06-01 22:58:07 +03:00
i f e q ( $( OFFICIAL ) , y e s )
2015-06-08 18:38:50 +03:00
rpm-build/$(GPG_FILE) : rpm -build
gpg --export -a " ${ GPG_KEY } " > " $@ "
2015-05-26 18:03:36 +03:00
2015-06-08 18:38:50 +03:00
rpm-sign : rpm -build /$( GPG_FILE ) rpmtar rpm -build /$( RPM_NVR ) .noarch .rpm
rpm --define "_signature gpg" --define " _gpg_name $( GPG_KEY) " --addsign rpm-build/$( RPM_NVR) .noarch.rpm
2015-06-01 22:58:07 +03:00
e n d i f
2015-05-26 18:03:36 +03:00
2014-10-17 17:01:45 +04:00
deb-build/$(SDIST_TAR_NAME) :
mkdir -p deb-build
tar -C deb-build/ -xvf dist/$( SDIST_TAR_FILE)
cp -a packaging/debian deb-build/$( SDIST_TAR_NAME) /
2014-10-20 23:00:00 +04:00
cp packaging/remove_tower_source.py deb-build/$( SDIST_TAR_NAME) /debian/
2014-10-28 22:20:33 +03:00
sed -ie " s#^ $( NAME) (\([^)]*\)) \([^;]*\);# $( NAME) ( $( VERSION) - $( RELEASE) ) $( DEB_DIST) ;# " deb-build/$( SDIST_TAR_NAME) /debian/changelog
2014-10-17 17:01:45 +04:00
debian : sdist deb -build /$( SDIST_TAR_NAME )
2014-10-28 22:20:33 +03:00
deb-build/$(NAME)_$(VERSION)-$(RELEASE)_all.deb :
2014-10-17 17:01:45 +04:00
cd deb-build/$( SDIST_TAR_NAME) && $( DEBUILD) -b
@echo "#############################################"
@echo "DEB artifacts:"
2014-10-28 22:20:33 +03:00
@echo deb-build/$( NAME) _$( VERSION) -$( RELEASE) _all.deb
2014-10-17 17:01:45 +04:00
@echo "#############################################"
2014-10-28 22:20:33 +03:00
deb : debian deb -build /$( NAME ) _ $( VERSION ) -$( RELEASE ) _all .deb
2014-10-17 17:01:45 +04:00
2014-10-28 22:20:33 +03:00
deb-build/$(NAME)_$(VERSION)-$(RELEASE)_source.changes :
2014-10-17 17:01:45 +04:00
cd deb-build/$( SDIST_TAR_NAME) && $( DEBUILD) -S
@echo "#############################################"
@echo "DEB artifacts:"
2014-10-28 22:20:33 +03:00
@echo deb-build/$( NAME) _$( VERSION) -$( RELEASE) _source.changes
2014-10-17 17:01:45 +04:00
@echo "#############################################"
2014-10-28 22:20:33 +03:00
deb-src : debian deb -build /$( NAME ) _ $( VERSION ) -$( RELEASE ) _source .changes
2014-10-17 17:01:45 +04:00
deb-upload : deb
2014-10-28 22:20:33 +03:00
$( DPUT_BIN) $( DPUT_OPTS) $( DEB_PPA) deb-build/$( NAME) _$( VERSION) -$( RELEASE) _amd64.changes ; \
2014-10-17 17:01:45 +04:00
deb-src-upload : deb -src
2014-10-28 22:20:33 +03:00
$( DPUT_BIN) $( DPUT_OPTS) $( DEB_PPA) deb-build/$( NAME) _$( VERSION) -$( RELEASE) _source.changes ; \
2014-10-17 17:01:45 +04:00
reprepro : deb
mkdir -p reprepro/conf
cp -a packaging/reprepro/* reprepro/conf/
2014-10-28 22:20:33 +03:00
@DEB= deb-build/$( NAME) _$( VERSION) -$( RELEASE) _all.deb ; \
2014-10-17 17:01:45 +04:00
for DIST in trusty precise ; do \
echo " Removing ' $( NAME) ' from the $$ {DIST} apt repo " ; \
echo reprepro --export= force -b reprepro remove $$ { DIST} $( NAME) ; \
done ; \
reprepro --export= force -b reprepro clearvanished; \
for DIST in trusty precise ; do \
echo " Adding $$ {DEB} to the $$ {DIST} apt repo " ; \
reprepro --keepunreferencedfiles --export= force -b reprepro --ignore= brokenold includedeb $$ { DIST} $$ { DEB} ; \
done ; \
2013-06-23 23:40:07 +04:00
2015-04-24 17:44:22 +03:00
amazon-ebs :
cd packaging/packer && $( PACKER) build -only $@ $( PACKER_BUILD_OPTS) -var " aws_instance_count= $( AWS_INSTANCE_COUNT) " -var " product_version= $( VERSION) " packer-$( NAME) .json
virtualbox-ovf : packaging /packer /ansible -tower -$( VERSION ) -virtualbox .box
packaging/packer/ansible-tower-$(VERSION)-virtualbox.box : packaging /packer /output -virtualbox -iso /centos -7.ovf
cd packaging/packer && $( PACKER) build -only virtualbox-ovf $( PACKER_BUILD_OPTS) -var " aws_instance_count= $( AWS_INSTANCE_COUNT) " -var " product_version= $( VERSION) " packer-$( NAME) .json
packaging/packer/output-virtualbox-iso/centos-6.ovf :
cd packaging/packer && $( PACKER) build packer-centos-6.json
virtualbox-centos-6 : packaging /packer /output -virtualbox -iso /centos -6.ovf
packaging/packer/output-virtualbox-iso/centos-7.ovf :
cd packaging/packer && $( PACKER) build packer-centos-7.json
virtualbox-centos-7 : packaging /packer /output -virtualbox -iso /centos -7.ovf
2014-01-07 21:04:25 +04:00
2015-06-08 23:00:18 +03:00
docker-dev :
docker build --no-cache= true --rm= true -t ansible/tower_devel:latest tools/docker
2013-06-23 23:40:07 +04:00
install :
$( PYTHON) setup.py install egg_info -b ""