提交 953215d9 编写于 作者: E Eric Iles

Fix testing ion Jenkins

上级 3f08d6b0
......@@ -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
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册