Fix: Use lf-activate-venv to install openstack dep
[releng/builder.git] / jjb / opendaylight-infra-deploy-maven-site.sh
index d27109499ec379a04755ad4f2c9ae9ccf84b8b5b..7563499018e5740d2f17745b1d6e7a3ab359f695 100644 (file)
 # Ensure we fail the job if any steps fail.
 set -eu -o pipefail
 
+# shellcheck disable=SC1090
+. ~/lf-env.sh
+
+# Check if openstack venv was previously created
+if [ -f "/tmp/.os_lf_venv" ]; then
+    os_lf_venv=$(cat "/tmp/.os_lf_venv")
+fi
+
+if [ -d "${os_lf_venv}" ] && [ -f "${os_lf_venv}/bin/openstack" ]; then
+    echo "Re-use existing venv: ${os_lf_venv}"
+    PATH=$os_lf_venv/bin:$PATH
+else
+    lf-activate-venv --python python3 lftools
+fi
+
 MAVEN_GROUP_ID=$(xmlstarlet sel \
       -N "x=http://maven.apache.org/POM/4.0.0" \
       -t \