@@ -27,14 +27,12 @@ pipeline {
27
27
s3Upload(file :' libchromiumcontent.tar.bz2' , bucket :" ${ LIBCC_BUCKET} " , path :" libchromiumcontent/osx/${ env.TARGET_ARCH} /${ GIT_COMMIT} /libchromiumcontent.tar.bz2" , acl :' PublicRead' )
28
28
}
29
29
}
30
- fileOperations {
31
- fileRenameOperation(' libchromiumcontent.tar.bz2' , ' libchromiumcontent-osx.tar.bz2' )
32
- }
30
+ fileOperations([fileRenameOperation(destination : ' libchromiumcontent-osx.tar.bz2' , source : ' libchromiumcontent.tar.bz2' )])
33
31
}
34
32
}
35
33
post {
36
34
always {
37
- archive ' libchromiumcontent.* '
35
+ archive ' libchromiumcontent-osx.tar.bz2 '
38
36
cleanWs()
39
37
}
40
38
}
@@ -63,14 +61,12 @@ pipeline {
63
61
s3Upload(file :' libchromiumcontent-static.tar.bz2' , bucket :" ${ LIBCC_BUCKET} " , path :" libchromiumcontent/osx/${ env.TARGET_ARCH} /${ GIT_COMMIT} /libchromiumcontent-static.tar.bz2" , acl :' PublicRead' )
64
62
}
65
63
}
66
- fileOperations {
67
- fileRenameOperation(' libchromiumcontent-static.tar.bz2' , ' libchromiumcontent-osx-static.tar.bz2' )
68
- }
64
+ fileOperations([fileRenameOperation(destination : ' libchromiumcontent-static-osx.tar.bz2' , source : ' libchromiumcontent-static.tar.bz2' )])
69
65
}
70
66
}
71
67
post {
72
68
always {
73
- archive ' libchromiumcontent-static.* '
69
+ archive ' libchromiumcontent-static-osx.tar.bz2 '
74
70
cleanWs()
75
71
}
76
72
}
@@ -100,14 +96,12 @@ pipeline {
100
96
s3Upload(file :' libchromiumcontent.tar.bz2' , bucket :" ${ LIBCC_BUCKET} " , path :" libchromiumcontent/mas/${ env.TARGET_ARCH} /${ GIT_COMMIT} /libchromiumcontent.tar.bz2" , acl :' PublicRead' )
101
97
}
102
98
}
103
- fileOperations {
104
- fileRenameOperation(' libchromiumcontent.tar.bz2' , ' libchromiumcontent-mas.tar.bz2' )
105
- }
99
+ fileOperations([fileRenameOperation(destination : ' libchromiumcontent-mas.tar.bz2' , source : ' libchromiumcontent.tar.bz2' )])
106
100
}
107
101
}
108
102
post {
109
103
always {
110
- archive ' libchromiumcontent.* '
104
+ archive ' libchromiumcontent-mas.tar.bz2 '
111
105
cleanWs()
112
106
}
113
107
}
@@ -137,14 +131,12 @@ pipeline {
137
131
s3Upload(file :' libchromiumcontent-static.tar.bz2' , bucket :" ${ LIBCC_BUCKET} " , path :" libchromiumcontent/mas/${ env.TARGET_ARCH} /${ GIT_COMMIT} /libchromiumcontent-static.tar.bz2" , acl :' PublicRead' )
138
132
}
139
133
}
140
- fileOperations {
141
- fileRenameOperation(' libchromiumcontent-static.tar.bz2' , ' libchromiumcontent-mas-static.tar.bz2' )
142
- }
134
+ fileOperations([fileRenameOperation(destination : ' libchromiumcontent-mas-static.tar.bz2' , source : ' libchromiumcontent-static.tar.bz2' )])
143
135
}
144
136
}
145
137
post {
146
138
always {
147
- archive ' libchromiumcontent-static.* '
139
+ archive ' libchromiumcontent-mas- static.tar.bz2 '
148
140
cleanWs()
149
141
}
150
142
}
0 commit comments