Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Fix testing in Jenkins #1680

Merged
merged 1 commit into from
Mar 16, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ pipeline {
. $HOME/.bash_profile
echo 1 | ./eosio_build.sh
'''
stash includes: 'build/**/*', name: 'buildUbuntu'
}
}
stage('MacOS') {
Expand All @@ -19,6 +20,7 @@ pipeline {
. $HOME/.bash_profile
echo 1 | ./eosio_build.sh
'''
stash includes: 'build/**/*', name: 'buildMacOS'
}
}
stage('Fedora') {
Expand All @@ -27,7 +29,8 @@ pipeline {
sh '''
. $HOME/.bash_profile
echo 1 | ./eosio_build.sh
'''
'''
stash includes: 'build/**/*', name: 'buildFedora'
}
}
}
Expand All @@ -37,6 +40,7 @@ pipeline {
stage('Ubuntu') {
agent { label 'Ubuntu' }
steps {
unstash 'buildUbuntu'
sh '''
. $HOME/.bash_profile
cd build
Expand All @@ -58,6 +62,7 @@ pipeline {
stage('MacOS') {
agent { label 'MacOS' }
steps {
unstash 'buildMacOS'
sh '''
. $HOME/.bash_profile
cd build
Expand All @@ -79,6 +84,7 @@ pipeline {
stage('Fedora') {
agent { label 'Fedora' }
steps {
unstash 'buildFedora'
sh '''
. $HOME/.bash_profile
cd build
Expand Down