diff options
author | Matt Rendina <rendinam@users.noreply.github.com> | 2018-01-12 13:33:34 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-12 13:33:34 -0500 |
commit | 8471485b317bbe8bfa8ac27c749f3b9b05d89de9 (patch) | |
tree | 7b84fd02dadb48dc47b3ff3d137051450cc0de28 /jenkins/job-suite-generator.groovy | |
parent | e8342ab151fe2c82030f9a92412d541c02c02487 (diff) | |
download | build_control-8471485b317bbe8bfa8ac27c749f3b9b05d89de9.tar.gz |
Obtain manifests via a simple clone (#54)
* Place clone in top-level job script
* Remove submodule clone
Diffstat (limited to 'jenkins/job-suite-generator.groovy')
-rw-r--r-- | jenkins/job-suite-generator.groovy | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/jenkins/job-suite-generator.groovy b/jenkins/job-suite-generator.groovy index d8c56bf..faf1647 100644 --- a/jenkins/job-suite-generator.groovy +++ b/jenkins/job-suite-generator.groovy @@ -28,6 +28,9 @@ node("master") { // Delete any existing job workspace directory contents. deleteDir() + // Clone the manifests repository. + git url: manifest_repo, relativeTargetDir: "manifests" + // Get the git repo and branch values used to obtain this and other // build_control scripts so they may be passed to the jobDSL script // that gets invoked at the bottom of this script. Vars harvested from |