Skip to content

Commit

Permalink
Archive unit tests' logs before running RPC tests
Browse files Browse the repository at this point in the history
  • Loading branch information
justanwar committed Nov 12, 2023
1 parent 9daed06 commit f2ac33f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -39,18 +39,18 @@ pipeline {
}
}
}
stage('Archive unit tests logs') {
steps {
archiveArtifacts artifacts: 'dist/src/test-suite.log',
allowEmptyArchive: true
}
}
stage('RPC Tests') {
steps {
dir('dist') {
sh 'qa/pull-tester/rpc-tests.py -extended'
}
}
}
stage('Archive artifacts') {
steps {
archiveArtifacts artifacts: 'dist/src/test-suite.log',
allowEmptyArchive: true
}
}
}
}

0 comments on commit f2ac33f

Please sign in to comment.