From 17ec7f17bfe43b51406f27a4e62bc8b16d812b4b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=A4=80=ED=95=98=20=EA=B9=80?= <junhakjh@ajou.ac.kr> Date: Thu, 21 Jul 2022 06:52:00 +0000 Subject: [PATCH] Update Jenkinsfile --- Jenkinsfile | 81 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100644 Jenkinsfile diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..804f0c7 --- /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' + + } + + } + + } -- GitLab