VOL-2568 Reintroduce support for pyvoltha sanity-test
Change-Id: Ic0059fb1b1d69ac3216483257cdd807e61b3a909
diff --git a/jjb/pipeline/voltha-bbsim-tests.groovy b/jjb/pipeline/voltha-bbsim-tests.groovy
index c82501b..515cc6d 100644
--- a/jjb/pipeline/voltha-bbsim-tests.groovy
+++ b/jjb/pipeline/voltha-bbsim-tests.groovy
@@ -95,7 +95,14 @@
stage('Push Images') {
steps {
sh '''
- if ! [[ "${gerritProject}" =~ ^(voltha-helm-charts|voltha-system-tests)\$ ]]; then
+ if [ "${gerritProject}" = "pyvoltha" ]; then
+ cd $WORKSPACE/voltha/pyvoltha/
+ make dist
+ cd $WORKSPACE/voltha/voltha-openonu-adapter
+ export LOCAL_PYVOLTHA=$WORKSPACE/voltha/pyvoltha/
+ make local-pyvoltha
+ make DOCKER_REPOSITORY=voltha/ DOCKER_TAG=citest docker-build
+ elif ! [[ "${gerritProject}" =~ ^(voltha-helm-charts|voltha-system-tests)\$ ]]; then
export GOROOT=/usr/local/go
export GOPATH=\$(pwd)
docker images | grep citest
@@ -124,6 +131,8 @@
IMAGES="afrouter afrouterd "
elif [ "${gerritProject}" = "bbsim" ]; then
IMAGES="bbsim "
+ elif [ "${gerritProject}" = "pyvoltha" ]; then
+ IMAGES="adapter_open_onu "
else
echo "No images to push"
fi