15 lines
223 B
Groovy
15 lines
223 B
Groovy
pipeline {
|
|
agent any
|
|
stages {
|
|
stage('Checkout') {
|
|
steps {
|
|
checkout scm
|
|
}
|
|
}
|
|
}
|
|
post {
|
|
failure {
|
|
echo "Build Failed"
|
|
}
|
|
}
|
|
} |