1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

Documentation - Add GH overview documentation build #200

This commit is contained in:
dpasukhi 2024-12-18 10:01:13 +00:00
parent 73ec4a59da
commit 1dfcac2978

View File

@ -1,4 +1,4 @@
# This workflow builds the OCCT reference manual documentation. # This workflow builds the OCCT reference manual and overview documentations.
# It is triggered on pushes to the 'master' branch. # It is triggered on pushes to the 'master' branch.
# The workflow includes steps to checkout the repository, install dependencies, build the documentation, and upload the generated documentation and logs as artifacts. # The workflow includes steps to checkout the repository, install dependencies, build the documentation, and upload the generated documentation and logs as artifacts.
@ -8,9 +8,6 @@ on:
push: push:
branches: branches:
- 'master' - 'master'
pull_request:
branches:
- '**'
jobs: jobs:
build: build:
@ -26,7 +23,7 @@ jobs:
choco install -y graphviz choco install -y graphviz
choco install -y doxygen.install choco install -y doxygen.install
- name: Build documentation - name: Build refman documentation
run: | run: |
set PATH=%PATH%;C:\Program Files\doxygen\bin;C:\Program Files\Graphviz\bin;C:\Program Files\doxygen set PATH=%PATH%;C:\Program Files\doxygen\bin;C:\Program Files\Graphviz\bin;C:\Program Files\doxygen
cd adm cd adm
@ -35,7 +32,6 @@ jobs:
- name: Upload refman documentation - name: Upload refman documentation
uses: actions/upload-artifact@v4.4.3 uses: actions/upload-artifact@v4.4.3
id: artifact-upload-step
with: with:
name: refman-doc name: refman-doc
path: doc/refman path: doc/refman
@ -47,3 +43,17 @@ jobs:
name: doxygen.log name: doxygen.log
path: doc/html_doxygen_err.log path: doc/html_doxygen_err.log
retention-days: 90 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