aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Rendina <mrendina@stsci.edu>2018-01-14 20:53:51 -0500
committerMatt Rendina <mrendina@stsci.edu>2018-01-14 20:53:51 -0500
commit50f2c3e0ef8eb7d434930d006b4e351a0b93f6c8 (patch)
tree490b8c4c37dadbfc97eb6655fa5b249280fb43c3
parentfdf28dcf162ad3f2bff53d5a781da9de83cf29b3 (diff)
downloadbuild_control-50f2c3e0ef8eb7d434930d006b4e351a0b93f6c8.tar.gz
Write manifest data to file for rambo to use
-rw-r--r--jenkins/dispatch.groovy5
1 files changed, 5 insertions, 0 deletions
diff --git a/jenkins/dispatch.groovy b/jenkins/dispatch.groovy
index 6cc7cb5..f3981a1 100644
--- a/jenkins/dispatch.groovy
+++ b/jenkins/dispatch.groovy
@@ -100,6 +100,11 @@ node(LABEL) {
println("\nmanifest_data:\n${manifest_data}")
this.manifest = readYaml text: manifest_data
+ // Write manifest data to file
+ dir("manifests") {
+ writeFile file: MANIFEST_FILE, text: manifest_data, encoding: "UTF-8"
+ }
+
this.pins_file = readYaml file: "jenkins/${this.version_pins_file}"
// Allow for sharing build_list between stages below.