groovy test
This commit is contained in:
parent
9bccd1f0a1
commit
e92f645eb9
12
groovy/tag.groovy
Normal file
12
groovy/tag.groovy
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
String tag = ''
|
||||||
|
|
||||||
|
def calcTag() {
|
||||||
|
tag = sh(returnStdout: true, script: "git tag --contains").trim()
|
||||||
|
return tag
|
||||||
|
}
|
||||||
|
|
||||||
|
def getTagNoV() {
|
||||||
|
return tag.substring(1)
|
||||||
|
}
|
||||||
|
|
||||||
|
return this
|
65
predeploy/Jenkinsfile
vendored
65
predeploy/Jenkinsfile
vendored
@ -1,31 +1,42 @@
|
|||||||
stage ('predeploy') {
|
// stage ('predeploy') {
|
||||||
|
// echo 'checking tag'
|
||||||
|
// script {
|
||||||
|
// def tag = sh(returnStdout: true, script: "git tag --contains").trim()
|
||||||
|
// def branchName = sh(returnStdout: true, script: "git rev-parse --abbrev-ref HEAD").trim()
|
||||||
|
|
||||||
|
// if (tag) {
|
||||||
|
// echo 'found tag ' + tag
|
||||||
|
// addBadge(
|
||||||
|
// icon: 'completed.gif',
|
||||||
|
// text: "Release ${tag}")
|
||||||
|
// def tagNoV = tag.substring(1)
|
||||||
|
// sh "cd ${TARGET_FOLDER}; echo '${tagNoV}' > ${DEPLOY_VERSION_VAR}";
|
||||||
|
// // sh "cd ${TARGET_FOLDER} ; echo 'mkdir ${tagNoV}; mv ./${branchName}/* ./${tagNoV}; rm -r -d ./${branchName}; rm ${DEPLOY_VERSION_VAR}' > ${DEPLOY_VERSION_VAR}"
|
||||||
|
// } else {
|
||||||
|
// echo 'tag not found'
|
||||||
|
// addBadge(
|
||||||
|
// icon: 'info.gif',
|
||||||
|
// text: "Сборка в master")
|
||||||
|
// sh "cd ${TARGET_FOLDER}; echo '${branchName}' > ${DEPLOY_VERSION_VAR}"
|
||||||
|
// // sh "cd ${TARGET_FOLDER} ; echo 'rm ${DEPLOY_VERSION_VAR}' > ${DEPLOY_VERSION_VAR}"
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
|
||||||
|
// stage ('archiving') {
|
||||||
|
// // Archive the build output artifacts.
|
||||||
|
// script {
|
||||||
|
// archiveArtifacts artifacts: "${TARGET_FOLDER}/*/**"
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
|
||||||
|
def tagModule = load "${JEN_FILES_TMP_NAME}/groovy/tag.groovy"
|
||||||
|
|
||||||
|
stage ('predeploy 2') {
|
||||||
echo 'checking tag'
|
echo 'checking tag'
|
||||||
script {
|
script {
|
||||||
def tag = sh(returnStdout: true, script: "git tag --contains").trim()
|
tag = tagModule.calcTag()
|
||||||
def branchName = sh(returnStdout: true, script: "git rev-parse --abbrev-ref HEAD").trim()
|
echo "tag is -> ${tag}"
|
||||||
|
println "tagNoV is -> ${tagModule.getTagNoV()}"
|
||||||
if (tag) {
|
|
||||||
echo 'found tag ' + tag
|
|
||||||
addBadge(
|
|
||||||
icon: 'completed.gif',
|
|
||||||
text: "Release ${tag}")
|
|
||||||
def tagNoV = tag.substring(1)
|
|
||||||
sh "cd ${TARGET_FOLDER}; echo '${tagNoV}' > ${DEPLOY_VERSION_VAR}";
|
|
||||||
// sh "cd ${TARGET_FOLDER} ; echo 'mkdir ${tagNoV}; mv ./${branchName}/* ./${tagNoV}; rm -r -d ./${branchName}; rm ${DEPLOY_VERSION_VAR}' > ${DEPLOY_VERSION_VAR}"
|
|
||||||
} else {
|
|
||||||
echo 'tag not found'
|
|
||||||
addBadge(
|
|
||||||
icon: 'info.gif',
|
|
||||||
text: "Сборка в master")
|
|
||||||
sh "cd ${TARGET_FOLDER}; echo '${branchName}' > ${DEPLOY_VERSION_VAR}"
|
|
||||||
// sh "cd ${TARGET_FOLDER} ; echo 'rm ${DEPLOY_VERSION_VAR}' > ${DEPLOY_VERSION_VAR}"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
stage ('archiving') {
|
|
||||||
// Archive the build output artifacts.
|
|
||||||
script {
|
|
||||||
archiveArtifacts artifacts: "${TARGET_FOLDER}/*/**"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user