Skip to content

Commit

Permalink
[ci] Ignore failures in docs push
Browse files Browse the repository at this point in the history
Fixes apache#12600. The original solution there doesn't actually fix the
issue, there would need to be some job queue that could make sure to
reject old pushes. Since this case is pretty rare, generally the next
commit that comes along and builds will fix everything up so we can
ignore failures that happen on `push`es.
  • Loading branch information
driazati committed Sep 6, 2022
1 parent da48e13 commit e7f60a8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Jenkinsfile

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ci/jenkins/Deploy.groovy.j2
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def deploy_docs() {
script: '''
cd tvm-site
git remote add deploy https://$GITHUB_TOKEN:x-oauth-basic@github.com/apache/tvm-site.git
git push deploy $DOCS_DEPLOY_BRANCH
git push deploy $DOCS_DEPLOY_BRANCH || true
''',
label: 'Upload docs to apache/tvm-site'
)
Expand Down

0 comments on commit e7f60a8

Please sign in to comment.