janus-plugin-sfu/Jenkinsfile

22 строки
227 B
Groovy

pipeline {
agent any
options {
ansiColor('xterm')
}
stages {
stage('build') {
steps {
build 'janus-gateway-hab-package'
}
}
}
post {
always {
deleteDir()
}
}
}