Skip to content

Commit

Permalink
[skip ci] Fix missing pack_lib in Jenkinsfile (apache#9924)
Browse files Browse the repository at this point in the history
This was inadvertently removed by apache#9554

Co-authored-by: driazati <driazati@users.noreply.github.com>
  • Loading branch information
2 people authored and Raghav-Chakravarthy committed Jan 28, 2022
1 parent 658361a commit 73fa34e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -571,6 +571,7 @@ stage('Test') {
label: 'Build docs',
)
}
pack_lib('docs', 'docs.tgz')
}
}
}
Expand Down Expand Up @@ -599,7 +600,7 @@ stage('Deploy') {
node('doc') {
ws(per_exec_ws('tvm/deploy-docs')) {
if (env.BRANCH_NAME == 'main') {
unpack_lib('mydocs', 'docs.tgz')
unpack_lib('docs', 'docs.tgz')
sh 'cp docs.tgz /var/docs/docs.tgz'
sh 'tar xf docs.tgz -C /var/docs'
}
Expand Down

0 comments on commit 73fa34e

Please sign in to comment.