forked from VirtoCommerce/jenkins-pipeline-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbackup.groovy
65 lines (59 loc) · 1.75 KB
/
backup.groovy
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
import jobs.scripts.Settings
def TMP_DIR
def ZIP_NAME
def SETTINGS
pipeline {
agent any
options
{
timestamps()
}
stages
{
stage('Init')
{
steps
{
script
{
ZIP_NAME = "${currentBuild.startTimeInMillis}_${env.BUILD_ID}.zip"
ZIP_PATH = "${env.WORKSPACE}@tmp\\${ZIP_NAME}"
configFileProvider([configFile(fileId: 'shared_lib_settings', variable: 'SETTINGS_FILE')]) {
SETTINGS = new Settings(readFile(SETTINGS_FILE))
}
SETTINGS.setRegion("backup")
SETTINGS.setEnvironment("master")
}
}
}
stage("Collecting Data")
{
steps
{
script
{
def targetFiles = []
targetFiles.add("${env.JENKINS_HOME}\\org.jenkinsci.plugins.configfiles.GlobalConfigFiles.xml")
def tmpDir = "${env.WORKSPACE}@tmp\\tmpDir"
TMP_DIR = tmpDir
dir(tmpDir)
{
deleteDir()
powershell script: "Copy-Item -Path \"${targetFiles.join(',')}\" -Destination ${tmpDir} -Recurse -Force", label: "Copy"
}
zip zipFile: ZIP_PATH, dir: tmpDir
}
}
}
stage("Sending Archive")
{
steps
{
script
{
powershell script: "${env.Utils}\\AzCopy10\\AzCopy copy ${ZIP_PATH} \"${SETTINGS['blobUrl']}\"", label: "AzCopy"
}
}
}
}
}