ium_444417/Jenkinsfile

10 lines
168 B
Plaintext
Raw Normal View History

2022-03-24 16:08:04 +01:00
pipeline {
agent any
stages {
stage("Check out from version control") {
steps {
checkout scm
}
}
2022-03-23 11:11:31 +01:00
}
2022-03-23 11:09:04 +01:00
}