blob: 1fc3c855187dcb130c1b7c0ab763dda822554fe6 [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
'''
}
}
}
}