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