SI/jenkinsfile.txt

11 lines
185 B
Plaintext
Raw Normal View History

2020-12-01 18:23:16 +01:00
Jenkinsfile (Declarative Pipeline)
pipeline {
agent any
stages {
stage('build') {
steps {
echo 'hello world'
}
}
}
}