jenkins-test/Jenkinsfile
2020-03-28 23:15:36 +01:00

11 lines
150 B
Groovy

pipeline {
agent any
stages {
stage('build') {
steps {
echo 'Building..'
}
}
}
}