추가 'pipline_script.txt'

This commit is contained in:
변정훈
2023-03-13 06:39:47 +00:00
parent 40a889e39b
commit b982855aa1

21
pipline_script.txt Normal file
View File

@@ -0,0 +1,21 @@
pipeline {
agent any
stages {
stage('Git Clone Task') {
steps {
git credentialsId: 'gitid',
url: 'http://gitlab.dev-cloudps.com/root/bookinfo.git',
branch: 'main'
}
post {
failure {
echo 'Fail!'
}
success {
echo 'Done!'
}
}
}
}
}