SI/jenkinsfile.txt
2020-12-01 18:23:16 +01:00

11 lines
185 B
Plaintext

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