diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000000000000000000000000000000000000..804f0c79489bfb3a25cfd4e6ea8fe2a09b6d63e4 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,81 @@ +pipeline { + + agent any + + stages { + + stage('Prepare') { + + agent any + + steps { + + checkout scm + + } + + post { + + success { + + echo 'prepare success' + + } + + always { + + echo 'done prepare' + + } + + cleanup { + + echo 'after all other post conditions' + + } + + } + + } + + + +pipeline { + + agent any + + stages { + + stage('Prepare') { + + agent any + + steps { + + checkout scm + + } + + post { + + success { + + echo 'prepare success' + + } + + always { + + echo 'done prepare' + + } + + cleanup { + + echo 'after all other post conditions' + + } + + } + + }