groovy test

This commit is contained in:
Primakov Alexandr Alexandrovich 2024-08-05 18:04:29 +03:00
parent 9bccd1f0a1
commit 9a90029efe
2 changed files with 56 additions and 7 deletions

12
groovy/tag.groovy Normal file
View 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

51
predeploy/Jenkinsfile vendored
View File

@ -1,23 +1,60 @@
// 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') { stage ('predeploy') {
echo 'checking tag' echo 'checking tag'
script { script {
def tag = sh(returnStdout: true, script: "git tag --contains").trim() tag = tagModule.calcTag()
echo "tag is -> ${tag}"
println "tagNoV is -> ${tagModule.getTagNoV()}"
def branchName = sh(returnStdout: true, script: "git rev-parse --abbrev-ref HEAD").trim() def branchName = sh(returnStdout: true, script: "git rev-parse --abbrev-ref HEAD").trim()
if (tag) { if (tag) {
echo 'found tag ' + tag println "found tag ${tag}"
addBadge( addBadge(
icon: 'completed.gif', icon: 'completed.gif',
text: "Release ${tag}") text: "Release ${tag}")
def tagNoV = tag.substring(1) sh "mkdir ${tagModule.getTagNoV()}"
sh "cd ${TARGET_FOLDER}; echo '${tagNoV}' > ${DEPLOY_VERSION_VAR}"; sh "mv src/* ${tagModule.getTagNoV()}"
// sh "cd ${TARGET_FOLDER} ; echo 'mkdir ${tagNoV}; mv ./${branchName}/* ./${tagNoV}; rm -r -d ./${branchName}; rm ${DEPLOY_VERSION_VAR}' > ${DEPLOY_VERSION_VAR}"
} else { } else {
echo 'tag not found' echo 'tag not found'
addBadge( addBadge(
icon: 'info.gif', icon: 'info.gif',
text: "Сборка в master") text: "Сборка в master")
sh "cd ${TARGET_FOLDER}; echo '${branchName}' > ${DEPLOY_VERSION_VAR}" // sh "cd ${TARGET_FOLDER}; echo '${branchName}' > ${DEPLOY_VERSION_VAR}"
sh "mkdir ${branchName}"
sh "mv ${TARGET_FOLDER}/* ${branchName}"
// sh "cd ${TARGET_FOLDER} ; echo 'rm ${DEPLOY_VERSION_VAR}' > ${DEPLOY_VERSION_VAR}" // sh "cd ${TARGET_FOLDER} ; echo 'rm ${DEPLOY_VERSION_VAR}' > ${DEPLOY_VERSION_VAR}"
} }
} }
@ -26,6 +63,6 @@ stage ('predeploy') {
stage ('archiving') { stage ('archiving') {
// Archive the build output artifacts. // Archive the build output artifacts.
script { script {
archiveArtifacts artifacts: "${TARGET_FOLDER}/*/**" archiveArtifacts artifacts: "/*/**"
} }
} }