SI/Jenkinsfile
2020-12-03 15:59:48 +01:00

11 lines
185 B
Groovy

Jenkinsfile (Declarative Pipeline)
pipeline {
agent any
stages {
stage('build') {
steps {
echo 'hello world'
}
}
}
}