mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-11-02 01:01:03 +01:00
15 lines
257 B
Groovy
15 lines
257 B
Groovy
pipeline {
|
|
agent any
|
|
|
|
stages {
|
|
stage('build') {
|
|
steps {
|
|
sh '''#!/bin/bash -l
|
|
source tools/build/envDefaults
|
|
onos-buck build onos
|
|
'''
|
|
}
|
|
}
|
|
}
|
|
}
|