Demo/Jenkinsfile
2024-01-06 20:24:45 +00:00

12 lines
169 B
Groovy

pipeline {
agent any
stages {
stage('Clean')
{
steps
{
bat "ant clean"
}
}
}
}