blob: 65e457490f2f8704f1c07656b30e9ba763ea6c7a [file] [log] [blame]
pipeline {
agent any
environment {
}
stages {
stage('build') {
steps {
sh 'tools/build/envDefaults && buck build onos'
}
}
}
}