set up dev environment

Change-Id: I11475b8d4dd7d7101ac1756fa78694eee74952c4
This commit is contained in:
Ray Milkey 2017-03-14 09:48:06 -07:00
parent 0bc7fdbbe4
commit eb6230ad73

5
Jenkinsfile vendored
View File

@ -1,9 +1,12 @@
pipeline { pipeline {
agent any agent any
environment {
}
stages { stages {
stage('build') { stage('build') {
steps { steps {
sh 'buck build onos' sh 'tools/build/envDefaults && buck build onos'
} }
} }
} }