Install os-ken from git repo

Currently jobs with "os-ken" in LIBS_FROM_GIT installs os-ken
from pypi but instead should be installed from git.

Partial-Bug: #2032738
Related-Bug: #2031526
Change-Id: I6b9c28f0cdb1e135052d57c7927b3573f1670a8c
This commit is contained in:
yatinkarel 2023-08-23 11:01:14 +05:30
parent 2b75e2bfdc
commit 24db9d0f2a

View File

@ -41,6 +41,12 @@ function configure_dr_agent_scheduler_driver {
#This API will be called for phase "install"
function dr_install {
# Install os-ken from git to test latest/in-review code
if use_library_from_git "os-ken"; then
git_clone_by_name "os-ken"
setup_dev_lib "os-ken"
fi
setup_develop $NEUTRON_DYNAMIC_ROUTING_DIR
}