Refactor tox to use the role

This patch switches tox usage to use the new role as well uses
Ansible to move build output.

Change-Id: Ie01e96edac1e1fd9e7f0a3e2d6b39f813a561aa2
This commit is contained in:
Mohammed Naser 2017-10-04 13:24:56 -04:00
parent 65ccea6bc9
commit 74df19df6b
No known key found for this signature in database
GPG Key ID: 481CBC90384AEC42

View File

@ -1,4 +1,3 @@
# TODO(mordred) This needs to be reworked to use the tox role
# TODO(mordred) Put the translations logic into a sphinx plugin?
- name: Build releasenotes contents
shell:
@ -11,8 +10,6 @@
DOCNAME=releasenotes
DIRECTORY=releasenotes
script_path=/usr/local/jenkins/slave_scripts
# Mapping of language codes to language names
declare -A LANG_NAME=(
["de"]="German"
@ -30,12 +27,6 @@
["zh_CN"]="Chinese (China)"
)
# This file always exists in OpenStack CI jobs, check for it so that
# it can be used manually as well.
if [ -e "$HOME/src/git.openstack.org/openstack/requirements/upper-constraints.txt" ]; then
export UPPER_CONSTRAINTS_FILE=$HOME/src/git.openstack.org/openstack/requirements/upper-constraints.txt
fi
if [ -e ${DIRECTORY}/source/locale/ ]; then
# Check that locale_dirs is really set, otherwise translations
# will not work.
@ -119,8 +110,14 @@
rm -f ${DIRECTORY}/source/locale/*.pot
fi
# Now build releasenotes with reference to translations
$script_path/run-tox.sh releasenotes
- name: Build release notes
include_role:
name: tox
vars:
tox_constraints_file: "{{ ansible_user_dir }}/src/git.openstack.org/openstack/requirements/upper-constraints.txt"
tox_envlist: releasenotes
# Move the built output into doc/build so that other roles can work well
mv ${DIRECTORY}/build doc
- name: Move build output to correct path for publishers
command: mv releasenotes/build doc
args:
chdir: "{{ zuul_work_dir }}"