[DO-290] reafactoring Release-activities (!17)

Reviewed-on: https://git.avroid.tech/DevOps/jenkins-pipelines/pulls/17
Co-authored-by: aleksandr.vodyanov <aleksandr.vodyanov@avroid.tech>
Co-committed-by: aleksandr.vodyanov <aleksandr.vodyanov@avroid.tech>
This commit is contained in:
aleksandr.vodyanov
2024-02-26 21:09:00 +03:00
committed by Aleksandr Vodyanov
parent 87ad52f470
commit 8f7b47fe0d
6 changed files with 62 additions and 156 deletions

View File

@@ -40,6 +40,7 @@ podTemplate(workspaceVolume: hostPathWorkspaceVolume(hostPath: "/data"),
}
stage('Run job dsl') {
List launchJobs = [ 'Release-activity/Tavro' ]
jobDsl(
targets: 'jobs-dsl/folders/*.groovy\n' +
'jobs-dsl/jobs/**/*.groovy\n' +
@@ -50,6 +51,10 @@ podTemplate(workspaceVolume: hostPathWorkspaceVolume(hostPath: "/data"),
removedViewAction: 'IGNORE',
removedConfigFilesAction: 'IGNORE'
)
launchJobs.each { job ->
build(job: job, wait: false)
}
}
}
}