Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .ci/azure-pipelines/docs-pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,15 @@ trigger:
paths:
include:
- doc
- .ci/azure-pipelines/documentation.yaml
- .ci/azure-pipelines/tutorials.yaml

pr:
paths:
include:
- doc
- .ci/azure-pipelines/documentation.yaml
- .ci/azure-pipelines/tutorials.yaml

resources:
pipelines:
Expand Down
6 changes: 2 additions & 4 deletions .ci/azure-pipelines/documentation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ jobs:
cmake $(Build.SourcesDirectory) \
-DDOXYGEN_USE_SHORT_NAMES=OFF \
-DWITH_DOCS=ON \
-DWITH_TUTORIALS=ON
-DWITH_TUTORIALS=OFF
displayName: 'CMake Configuration'
- script: |
cd $BUILD_DIR
cmake --build . -- doc tutorials advanced
cmake --build . -- doc
displayName: 'Build Documentation'
- script: |
cd $BUILD_DIR
Expand All @@ -44,8 +44,6 @@ jobs:
echo -e "Host github.com\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config
git clone git@github.com:PointCloudLibrary/documentation.git $DOC_DIR
cd $DOC_DIR
cp -r $BUILD_DIR/doc/tutorials/html/* tutorials
cp -r $BUILD_DIR/doc/advanced/html/* advanced
cp -r $BUILD_DIR/doc/doxygen/html/* .
cp $CHANGELOG.html .
git add --all
Expand Down
Loading