add in unit testing pipeline step

Change-Id: Ib6ac50cb91bbdd6e7ac35c8e39a2072a0731b332
This commit is contained in:
Ray Milkey 2017-03-14 12:28:21 -07:00
parent c94df63fda
commit 65639719e8

9
Jenkinsfile vendored
View File

@ -12,4 +12,13 @@ pipeline {
}
}
}
stage('unit-test') {
steps {
sh '''#!/bin/bash -l
ONOS_ROOT=`pwd`
source tools/build/envDefaults
onos-buck test
'''
}
}