diff options
-rw-r--r-- | jjb/apex/apex.yml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/jjb/apex/apex.yml b/jjb/apex/apex.yml index 1296b5b37..26090a3a3 100644 --- a/jjb/apex/apex.yml +++ b/jjb/apex/apex.yml @@ -855,6 +855,13 @@ exit 1 fi fi + if ! rpm -q python34-PyYAML > /dev/null; then + sudo yum install -y epel-release + if ! sudo yum install -y python34-PyYAML; then + echo "Failed to install python34-PyYAML" + exit 1 + fi + fi if [ -z ${PYTHONPATH:-} ]; then export PYTHONPATH=${WORKSPACE}/lib/python else |