diff options
author | Feng Pan <fpan@redhat.com> | 2016-05-07 15:00:53 -0400 |
---|---|---|
committer | Feng Pan <fpan@redhat.com> | 2016-05-08 14:07:08 -0400 |
commit | 7751680a71c9ea84c6cdcb5c58b395e52b5de80e (patch) | |
tree | 3c07d572ee5a6561e8dcc2bbc82b85b62b2aabbf /jjb | |
parent | 38bb1d85c3fa0ee9ee6d7ebfb47f3c972bef5386 (diff) |
Install python34-setuptools for verify job
This package is required for installing jinja2 python package with
easy_install-3.4 tool.
Change-Id: I8df9667d5c435b179d5b5af8a8881bb50704dd49
Signed-off-by: Feng Pan <fpan@redhat.com>
Diffstat (limited to 'jjb')
-rw-r--r-- | jjb/apex/apex.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/jjb/apex/apex.yml b/jjb/apex/apex.yml index 0ef6831e7..a0ef87caf 100644 --- a/jjb/apex/apex.yml +++ b/jjb/apex/apex.yml @@ -917,6 +917,12 @@ exit 1 fi fi + if ! rpm -q python34-setuptools > /dev/null; then + if ! sudo yum install -y python34-setuptools; then + echo "Failed to install python34-setuptools" + exit 1 + fi + fi if [ -z ${PYTHONPATH:-} ]; then export PYTHONPATH=${WORKSPACE}/lib/python else |