Skip to content
This repository has been archived by the owner on Jan 15, 2024. It is now read-only.

Commit

Permalink
Test documentation (dev setup) on CI
Browse files Browse the repository at this point in the history
CI currently only tests that documentation can be built after all notebooks are
run and converted from .md to .ipynb format. Running all notebooks takes some
time. This CI step makes sure, that the documentation can also be built without
converting the notebooks first.
  • Loading branch information
leezu committed Nov 23, 2018
1 parent cce82a7 commit 8cd4386
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,18 @@ stage("Unit Test") {
sh("ci/upload_doc.sh ${bucket} ${path}")
}
}
},
// Make sure documentation can be built without building notebooks
'Documentation (dev setup)': {
node {
ws('workspace/gluon-nlp-local-docs') {
checkout scm
sh """#!/bin/bash
cd docs
make html
"""
}
}
}
}

Expand Down

0 comments on commit 8cd4386

Please sign in to comment.