Gitiles
Code Review
Sign In
gerrit.onosproject.org
/
onos
/
c94df63fda0eb24ff01d0d902dd7b36d29d2d08d
/
.
/
Jenkinsfile
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
'''
}
}
}
}