From 62de457b90967c5735e46d37118241ebbea45584 Mon Sep 17 00:00:00 2001 From: Brian Stinson Date: Mar 14 2018 14:57:28 +0000 Subject: sync the out files back into the jenkins workspace and archive them Merges https://pagure.io/pagure/pull-request/3065 --- diff --git a/.cico.pipeline b/.cico.pipeline index ae00242..1fdbfb7 100644 --- a/.cico.pipeline +++ b/.cico.pipeline @@ -53,8 +53,16 @@ node('pagure') { currentBuild.result = "FAILED" throw e } finally { + stage('Sync Artifacts'){ + syncfromduffynode('pagure/*.out') + } + stage('Deallocate Node'){ sh 'cico node done ${SSID}' } + + stage('Archive Artifacts'){ + archiveArtifacts artifacts: '*.out' + } } }