From 953215d92ff6258f095128165fb7ffc8aef47632 Mon Sep 17 00:00:00 2001 From: Eric Iles Date: Fri, 16 Mar 2018 11:28:42 -0400 Subject: [PATCH] Fix testing ion Jenkins --- Jenkinsfile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index d6c4f5aa969..2f480a158f3 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -10,6 +10,7 @@ pipeline { . $HOME/.bash_profile echo 1 | ./eosio_build.sh ''' + stash includes: 'build/**/*', name: 'buildUbuntu' } } stage('MacOS') { @@ -19,6 +20,7 @@ pipeline { . $HOME/.bash_profile echo 1 | ./eosio_build.sh ''' + stash includes: 'build/**/*', name: 'buildMacOS' } } stage('Fedora') { @@ -27,7 +29,8 @@ pipeline { sh ''' . $HOME/.bash_profile echo 1 | ./eosio_build.sh - ''' + ''' + stash includes: 'build/**/*', name: 'buildFedora' } } } @@ -37,6 +40,7 @@ pipeline { stage('Ubuntu') { agent { label 'Ubuntu' } steps { + unstash 'buildUbuntu' sh ''' . $HOME/.bash_profile cd build @@ -58,6 +62,7 @@ pipeline { stage('MacOS') { agent { label 'MacOS' } steps { + unstash 'buildMacOS' sh ''' . $HOME/.bash_profile cd build @@ -79,6 +84,7 @@ pipeline { stage('Fedora') { agent { label 'Fedora' } steps { + unstash 'buildFedora' sh ''' . $HOME/.bash_profile cd build