onos/Jenkinsfile
Ray Milkey f4a3491e80 No need for && operator, run it all in the same shell
Change-Id: I2b64a580954d625733a9a820132f32e1feec864c
2017-03-14 11:17:29 -07:00

15 lines
257 B
Groovy

pipeline {
agent any
stages {
stage('build') {
steps {
sh '''#!/bin/bash -l
source tools/build/envDefaults
onos-buck build onos
'''
}
}
}
}