mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-02 17:46:22 +03:00
Tests - Action to build Refman doc #103
Add GitHub Actions workflow for building OCCT refman documentation
This commit is contained in:
parent
83b4e3f988
commit
96bdb9db84
36
.github/workflows/build-doc-refman.yml
vendored
Normal file
36
.github/workflows/build-doc-refman.yml
vendored
Normal file
@ -0,0 +1,36 @@
|
||||
# This workflow will build OCCT refman documentation.
|
||||
|
||||
name: Build Refman Documentation
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- 'master'
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4.2.1
|
||||
|
||||
- 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
|
||||
|
||||
- name: Build documentation
|
||||
run: bash gendoc -refman
|
||||
|
||||
- name: Upload refman documentation
|
||||
uses: actions/upload-artifact@v4.4.3
|
||||
id: artifact-upload-step
|
||||
with:
|
||||
name: refman-doc
|
||||
path: doc/refman
|
||||
retention-days: 90
|
||||
|
||||
- name: Upload generation log
|
||||
uses: actions/upload-artifact@v4.4.3
|
||||
with:
|
||||
name: dogygen.log
|
||||
path: doc/html_doxygen_err.log
|
Loading…
x
Reference in New Issue
Block a user