-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile.deploy.cleanup
71 lines (69 loc) · 2.37 KB
/
Jenkinsfile.deploy.cleanup
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/* Git deploy pipeline. */
def deployTarget
def websiteTarget
def productToClean
def versionToClean
def dryRun
pipeline {
agent any
options {
buildDiscarder(logRotator(numToKeepStr: '5'))
}
stages {
stage('setup') {
steps {
script {
load "../Ituglib_Build/Jenkinsfile.globals.all"
load "../Ituglib_Build/Jenkinsfile.globals.nsx"
deployTarget = "${DEPLOY_TARGET}"
websiteTarget = "${WEBSITE_TARGET}"
}
script {
def userInput = input(id: 'userInput', message: 'Cleanup Items?',
parameters: [
string(defaultValue: '', description: 'Product to Clean', name: 'product'),
string(defaultValue: '', description: 'Version to Clean', name: 'version'),
booleanParam(defaultValue: false, description: 'Dry Run Only', name: 'dryrun'),
])
productToClean = userInput.product
versionToClean = userInput.version
dryRun = userInput.dryrun
}
}
}
stage('preamble') {
when {
expression {
return dryRun;
}
}
steps {
withEnv(["VERSION=${versionToClean}",
"PRODUCT=${productToClean}",
"DEST=${deployTarget}",]) {
sh "ls -l ${DEST}/${PRODUCT}-*${VERSION}-*"
}
}
}
stage('cleanup') {
when {
expression {
return !dryRun;
}
}
steps {
withEnv(["VERSION=${versionToClean}",
"PRODUCT=${productToClean}",
"DEST=${deployTarget}",]) {
sh "echo Removing ${DEST}/${PRODUCT}-*${VERSION}-*"
sh "rm -f ${DEST}/${PRODUCT}-*${VERSION}-*"
}
}
}
}
post {
always {
mail bcc: '', body: "${currentBuild.currentResult}: Job ${env.JOB_NAME} build ${env.BUILD_NUMBER}\nDuration: ${currentBuild.durationString}\nChange: ${currentBuild.changeSets}\n More info at: ${env.BUILD_URL}", cc: '', from: '[email protected]', replyTo: '', subject: "[Jenkins Stage TCMVNS] ${currentBuild.currentResult}: job ${env.JOB_NAME}", to: '[email protected]'
}
}
}