Configuration - Update minimum CMake version to 3.10 #169 #11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow builds the OCCT reference manual documentation. | |
# 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. | |
name: Build Documentation | |
on: | |
push: | |
branches: | |
- 'master' | |
jobs: | |
build: | |
name: Build Refman Documentation | |
runs-on: windows-2022 | |
steps: | |
- name: Checkout repository | |
uses: actions/[email protected] | |
- name: Install dependencies | |
run: | | |
choco install -y graphviz | |
choco install -y doxygen.install | |
- name: Build documentation | |
run: | | |
set PATH=%PATH%;C:\Program Files\doxygen\bin;C:\Program Files\Graphviz\bin;C:\Program Files\doxygen | |
bash gendoc -refman | |
shell: cmd | |
- name: Upload refman documentation | |
uses: actions/[email protected] | |
id: artifact-upload-step | |
with: | |
name: refman-doc | |
path: doc/refman | |
retention-days: 90 | |
- name: Upload generation log | |
uses: actions/[email protected] | |
with: | |
name: doxygen.log | |
path: doc/html_doxygen_err.log | |
retention-days: 90 |