10 lines
168 B
Groovy
10 lines
168 B
Groovy
pipeline {
|
|
agent any
|
|
stages {
|
|
stage("Check out from version control") {
|
|
steps {
|
|
checkout scm
|
|
}
|
|
}
|
|
}
|
|
} |