commit | 65639719e8f2f4600fb0c608b572b490e5eb1b02 | [log] [tgz] |
---|---|---|
author | Ray Milkey <ray@onlab.us> | Tue Mar 14 12:28:21 2017 -0700 |
committer | Ray Milkey <ray@onlab.us> | Tue Mar 14 12:29:24 2017 -0700 |
tree | b5ec6208540a2ffc986bb5116fdbcbf6964659d5 | |
parent | c94df63fda0eb24ff01d0d902dd7b36d29d2d08d [diff] [blame] |
add in unit testing pipeline step Change-Id: Ib6ac50cb91bbdd6e7ac35c8e39a2072a0731b332
diff --git a/Jenkinsfile b/Jenkinsfile index 1fc3c85..454e3b7 100644 --- a/Jenkinsfile +++ b/Jenkinsfile
@@ -12,4 +12,13 @@ } } } + stage('unit-test') { + steps { + sh '''#!/bin/bash -l + ONOS_ROOT=`pwd` + source tools/build/envDefaults + onos-buck test + ''' + } + }