ServerMonitorBot/Jenkinsfile

11 lines
118 B
Groovy

pipeline {
agent any
stages {
stage('Message') {
steps {
echo 'Start build'
}
}
}
}