Skip to content

Commit

Permalink
Support OSRF_REPOS_TO_USE
Browse files Browse the repository at this point in the history
Signed-off-by: Jose Luis Rivero <[email protected]>
  • Loading branch information
j-rivero committed Oct 11, 2023
1 parent 004001b commit 548c32f
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions jenkins-scripts/dsl/_configs_/OSRFSourceCreation.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,15 @@ class OSRFSourceCreation
stringParam("VERSION",
default_params.find{ it.key == "VERSION"}?.value,
"Packages version to be built or nightly (enable nightly build mode)")
stringParam("OSRF_REPOS_TO_USE",
default_params.find{ it.key == "OSRF_REPOS_TO_USE"}?.value,
"OSRF repos name to use when building the package")
stringParam("LINUX_DISTRO",
default_params.find{ it.key == "LINUX_DISTRO"}?.value,
"Linux distribution to use to generate sources")
stringParam("DISTRO",
default_params.find{ it.key == "DISTRO"}?.value,
"Linux release inside LINUX_DISTRO to generate sources on")
stringParam("RELEASE_VERSION",
default_params.find{ it.key == "RELEASE_VERSION"}?.value,
"For downstream jobs: Packages release version")
Expand All @@ -36,12 +45,6 @@ class OSRFSourceCreation
stringParam("EXTRA_OSRF_REPO",
default_params.find{ it.key == "EXTRA_OSRF_REPO"}?.value,
"For downstream jobs: OSRF extra repositories to add")
stringParam("LINUX_DISTRO",
default_params.find{ it.key == "LINUX_DISTRO"}?.value,
"Linux distribution to use to generate sources")
stringParam("DISTRO",
default_params.find{ it.key == "DISTRO"}?.value,
"Linux release inside LINUX_DISTRO to generate sources on")
}
}
}
Expand Down

0 comments on commit 548c32f

Please sign in to comment.