mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Enhance version detection in OCCDoc_DetectCasVersion Refactor documentation build workflow and integrate into multiplatform CI
47 lines
1.2 KiB
YAML
47 lines
1.2 KiB
YAML
name: Build Documentation
|
|
description: 'Build OCCT documentation using doxygen'
|
|
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- name: Install dependencies
|
|
run: |
|
|
choco install -y graphviz
|
|
choco install -y doxygen.install
|
|
shell: pwsh
|
|
|
|
- name: Build refman documentation
|
|
run: |
|
|
set PATH=%PATH%;C:\Program Files\doxygen\bin;C:\Program Files\Graphviz\bin;C:\Program Files\doxygen
|
|
cd adm
|
|
bash gendoc -refman
|
|
shell: cmd
|
|
|
|
- name: Upload refman documentation
|
|
uses: actions/upload-artifact@v4.4.3
|
|
with:
|
|
name: refman-doc
|
|
path: doc/refman
|
|
retention-days: 90
|
|
|
|
- name: Upload generation log
|
|
uses: actions/upload-artifact@v4.4.3
|
|
with:
|
|
name: doxygen.log
|
|
path: doc/html_doxygen_err.log
|
|
retention-days: 90
|
|
|
|
- name: Build documentation Overview
|
|
run: |
|
|
set PATH=%PATH%;C:\Program Files\doxygen\bin;C:\Program Files\Graphviz\bin;C:\Program Files\doxygen
|
|
cd adm
|
|
bash gendoc -overview
|
|
shell: cmd
|
|
|
|
- name: Upload overview documentation
|
|
uses: actions/upload-artifact@v4.4.3
|
|
with:
|
|
name: overview-doc
|
|
path: doc/overview
|
|
retention-days: 90
|