Skip to content

Commit d8d37fa

Browse files
committed
feat: Publish via ssh onto tonne
1 parent 3402bfa commit d8d37fa

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

Jenkinsfile

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,46 @@ pipeline {
138138
if (params.GLUON_TARGET != 'ALL') {
139139
archiveArtifacts artifacts: 'gluon/output/images/**/*', fingerprint: true
140140
archiveArtifacts artifacts: 'gluon/output/meta/**/*', fingerprint: true
141+
sshPublisher(
142+
publishers: [
143+
sshPublisherDesc(
144+
configName: 'tonne.ffh.zone',
145+
transfers: [
146+
sshTransfer(
147+
cleanRemote: false,
148+
excludes: '',
149+
execCommand: '',
150+
execTimeout: 120000,
151+
flatten: false,
152+
makeEmptyDirs: false,
153+
noDefaultExcludes: false,
154+
patternSeparator: '[, ]+',
155+
remoteDirectory: '',
156+
remoteDirectorySDF: false,
157+
removePrefix: 'output',
158+
sourceFiles: 'output/images/'
159+
),
160+
sshTransfer(
161+
cleanRemote: false,
162+
excludes: '',
163+
execCommand: '',
164+
execTimeout: 120000,
165+
flatten: false,
166+
makeEmptyDirs: false,
167+
noDefaultExcludes: false,
168+
patternSeparator: '[, ]+',
169+
remoteDirectory: '',
170+
remoteDirectorySDF: false,
171+
removePrefix: 'output',
172+
sourceFiles: 'output/meta/'
173+
)
174+
],
175+
usePromotionTimestamp: false,
176+
useWorkspaceInPromotion: false,
177+
verbose: false
178+
)
179+
]
180+
)
141181
}
142182
}
143183
}

0 commit comments

Comments
 (0)