hubs/Jenkinsfile

22 строки
211 B
Groovy

pipeline {
agent any
options {
ansiColor('xterm')
}
stages {
stage('build') {
steps {
build 'reticulum'
}
}
}
post {
always {
deleteDir()
}
}
}