Skip to content

Commit

Permalink
Merge pull request rapidsai#638 from rapidsai/branch-0.17
Browse files Browse the repository at this point in the history
[gpuCI] Auto-merge branch-0.17 to branch-0.18 [skip ci]
  • Loading branch information
GPUtester committed Dec 1, 2020
2 parents cf529ee + 22f8f0e commit 8b5ee7a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
- PR #603 Always test both legacy and per-thread default stream
- PR #611 Add a note to the contribution guide about requiring 2 C++ reviewers
- PR #615 Improve gpuCI Scripts
- PR #635 Add Python docs build to gpuCI

## Bug Fixes

Expand Down
10 changes: 8 additions & 2 deletions ci/docs/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export HOME=$WORKSPACE
export PROJECT_WORKSPACE=/rapids/rmm
export LIBCUDF_KERNEL_CACHE_PATH="$HOME/.jitify-cache"
export NIGHTLY_VERSION=$(echo $BRANCH_VERSION | awk -F. '{print $2}')
export PROJECTS=(rmm)
export PROJECTS=(librmm rmm)

gpuci_logger "Check environment"
env
Expand All @@ -43,6 +43,11 @@ gpuci_logger "Build Doxygen docs"
cd $PROJECT_WORKSPACE/doxygen
doxygen Doxyfile

# Build Python docs
gpuci_logger "Build Python docs"
cd $PROJECT_WORKSPACE/python/docs
make html

#Commit to Website
cd $DOCS_WORKSPACE

Expand All @@ -54,5 +59,6 @@ for PROJECT in ${PROJECTS[@]}; do
done


mv $PROJECT_WORKSPACE/doxygen/html/* $DOCS_WORKSPACE/api/rmm/$BRANCH_VERSION
mv $PROJECT_WORKSPACE/doxygen/html/* $DOCS_WORKSPACE/api/librmm/$BRANCH_VERSION
mv $PROJECT_WORKSPACE/python/docs/_build/html/* $DOCS_WORKSPACE/api/rmm/$BRANCH_VERSION

0 comments on commit 8b5ee7a

Please sign in to comment.