mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
Testing - GH Actions RefMan on Windows #131
The RefMan doc generation is OS depended. All previous versions were generated on Win.
This commit is contained in:
parent
802ef8ce4c
commit
eb69515cb5
16
.github/workflows/build-docs.yml
vendored
16
.github/workflows/build-docs.yml
vendored
@ -12,22 +12,23 @@ on:
|
|||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
name: Build Refman Documentation
|
name: Build Refman Documentation
|
||||||
runs-on: ubuntu-24.04
|
runs-on: windows-2022
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
# Step: Checkout the repository
|
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v4.2.1
|
uses: actions/checkout@v4.2.1
|
||||||
|
|
||||||
# Step: Install necessary dependencies for building the documentation
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: sudo apt-get update && sudo apt-get install -y tcl-dev tk-dev cmake gcc g++ make libbtbb-dev libx11-dev libglu1-mesa-dev doxygen graphviz
|
run: |
|
||||||
|
choco install -y graphviz
|
||||||
|
choco install -y doxygen.install
|
||||||
|
|
||||||
# Step: Build the reference manual documentation
|
|
||||||
- name: Build documentation
|
- name: Build documentation
|
||||||
run: bash gendoc -refman
|
run: |
|
||||||
|
set PATH=%PATH%;C:\Program Files\doxygen\bin;C:\Program Files\Graphviz\bin;C:\Program Files\doxygen
|
||||||
|
bash gendoc -refman
|
||||||
|
shell: cmd
|
||||||
|
|
||||||
# Step: Upload the generated reference manual documentation as an artifact
|
|
||||||
- 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
|
id: artifact-upload-step
|
||||||
@ -36,7 +37,6 @@ jobs:
|
|||||||
path: doc/refman
|
path: doc/refman
|
||||||
retention-days: 90
|
retention-days: 90
|
||||||
|
|
||||||
# Step: Upload the documentation generation log as an artifact
|
|
||||||
- name: Upload generation log
|
- name: Upload generation log
|
||||||
uses: actions/upload-artifact@v4.4.3
|
uses: actions/upload-artifact@v4.4.3
|
||||||
with:
|
with:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user