Skip to content

Commit

Permalink
Skip sphinx docs generation
Browse files Browse the repository at this point in the history
  • Loading branch information
wweic committed Sep 6, 2019
1 parent 0da52e1 commit 21c0b8e
Showing 1 changed file with 23 additions and 22 deletions.
45 changes: 23 additions & 22 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -295,19 +295,20 @@ stage('Integration Test') {
}
}
}
},
'docs: GPU': {
node('GPU') {
ws('workspace/tvm/docs-python-gpu') {
init_git()
unpack_lib('gpu', tvm_multilib)
timeout(time: max_time, unit: 'MINUTES') {
sh "${docker_run} ${ci_gpu} ./tests/scripts/task_python_docs.sh"
}
pack_lib('mydocs', 'docs.tgz')
}
}
}
// TODO: Fix the doc
// 'docs: GPU': {
// node('GPU') {
// ws('workspace/tvm/docs-python-gpu') {
// init_git()
// unpack_lib('gpu', tvm_multilib)
// timeout(time: max_time, unit: 'MINUTES') {
// sh "${docker_run} ${ci_gpu} ./tests/scripts/task_python_docs.sh"
// }
// pack_lib('mydocs', 'docs.tgz')
// }
// }
// }
}

/*
Expand All @@ -328,13 +329,13 @@ stage('Build packages') {
}
*/

stage('Deploy') {
node('doc') {
ws('workspace/tvm/deploy-docs') {
if (env.BRANCH_NAME == "master") {
unpack_lib('mydocs', 'docs.tgz')
sh "tar xf docs.tgz -C /var/docs"
}
}
}
}
// stage('Deploy') {
// node('doc') {
// ws('workspace/tvm/deploy-docs') {
// if (env.BRANCH_NAME == "master") {
// unpack_lib('mydocs', 'docs.tgz')
// sh "tar xf docs.tgz -C /var/docs"
// }
// }
// }
// }

0 comments on commit 21c0b8e

Please sign in to comment.