blob: a8d92acf239afe87ed368d2dcb4bcc074c5eddac [file] [log] [blame]
pipeline {
agent any
stages {
stage('build') {
steps {
sh '''#!/bin/bash -l
ONOS_ROOT=`pwd`
source tools/build/envDefaults
onos-buck build onos
'''
}
}
}
stage('unit-test') {
steps {
sh '''#!/bin/bash -l
ONOS_ROOT=`pwd`
source tools/build/envDefaults
onos-buck test
'''
}
}
}