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