From 50f2c3e0ef8eb7d434930d006b4e351a0b93f6c8 Mon Sep 17 00:00:00 2001 From: Matt Rendina Date: Sun, 14 Jan 2018 20:53:51 -0500 Subject: Write manifest data to file for rambo to use --- jenkins/dispatch.groovy | 5 +++++ 1 file changed, 5 insertions(+) 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. -- cgit