Skip to content
Merged
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
9 changes: 2 additions & 7 deletions .github/workflows/dev-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: zecale-ci-dev-docs

on:
push:
branches: [ extend-doxy-config ]
branches: [ extend-doxy-config, extend-doxy-config-fix ]
#branches: [ develop ]

jobs:
Expand Down Expand Up @@ -44,12 +44,7 @@ jobs:
popd
sudo apt install -y doxygen graphviz
- name: Generate documentation
run: |
mkdir -p build
pushd build
cmake -DGEN_DOC=ON ..
make build_docs
popd
run: scripts/ci build_docs
- name: GH Pages Deployment
uses: peaceiris/actions-gh-pages@v3
with:
Expand Down
10 changes: 10 additions & 0 deletions scripts/ci
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,16 @@ function build() {
fi
}

function build_docs() {
cpp_build_setup

mkdir -p build
pushd build
cmake -DGEN_DOC=ON ..
make build_docs
popd
}

function ci_setup() {

if [ "${platform}" == "Darwin" ] ; then
Expand Down