Gil Shinar created OVIRT-1109:
---------------------------------
Summary: Create jobs parameter in manual system tests
Key: OVIRT-1109
URL:
https://ovirt-jira.atlassian.net/browse/OVIRT-1109
Project: oVirt - virtualization made easy
Issue Type: Task
Reporter: Gil Shinar
Assignee: infra
You should do that by adding a dynamic parameter that'll have a groovy script such
as:
*import jenkins.model.*
def list = []
def matchedJobs = Jenkins.instance.items.findAll { job ->
job.name =~ /build-artifacts/
}
matchedJobs.each { job ->
if (!job.name.contains("archived_for_deletion")) {
list << job.name.split('_')[0]
}
}
return list.unique()*
With the above script you'll have all project names. From the project name and the
other parameters you can build any job's name:
{project}_{ovirt_version}_build-artifacts-{distro}-{arch}
--
This message was sent by Atlassian JIRA
(v1000.718.6#100026)