From 0ca9e6e173ac8404752e55d6fd49af4178a9ccce Mon Sep 17 00:00:00 2001 From: rameshthoomu Date: Thu, 28 Jun 2018 12:23:39 -0400 Subject: [PATCH] FABN-833 Update Jenkinsfile to capture build artifacts Change-Id: Ie5eb6bb82b99ba12f7a4d417450b55d175d811b3 Signed-off-by: rameshthoomu --- Jenkinsfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 9ccbf1db80..a5836e26f4 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -91,4 +91,7 @@ node ('hyp-x') { // trigger build on x86_64 node throw err } } + stage("Archive Build artifacts") { + archiveArtifacts artifacts: '**/*.log' + } }