Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
add try except to publish step
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronmarkham committed Aug 13, 2019
1 parent 16d2cc9 commit 7586811
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions ci/jenkins/Jenkins_steps.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -1551,11 +1551,16 @@ def docs_publish() {
node(NODE_LINUX_CPU) {
ws('workspace/docs') {
timeout(time: max_time, unit: 'MINUTES') {
utils.init_git()
//utils.init_git()
unstash 'full_website'
//sh 'tar -xzf docs/_build/full_website.tgz --directory .'
// TODO: Make sure this 'test-website-publish' understand the new structure
build 'test-website-publish-master'
try {
build 'test-website-publish-master'
}
catch (Exception e) {
println(e.getMessage())
}
}
}
}
Expand Down

0 comments on commit 7586811

Please sign in to comment.