-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove unnecessary dependencies for document generation
- Loading branch information
Showing
2 changed files
with
31 additions
and
4 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: gendoc | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- doci | ||
tags: | ||
- '*' | ||
|
||
jobs: | ||
gendoc: | ||
name: Generate documentation | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name : Install dependencies | ||
run: sudo apt-get install -y git cmake build-essential doxygen python3-dev python3-pip pybind11-dev libeigen3-dev libomp-dev python3-sphinx python3-sphinx-rtd-theme | ||
|
||
- name: Install python dependencies | ||
run: python -m pip install mkdocs mkdocs-material | ||
|
||
-name: Generate documentation | ||
run: | | ||
cd docs && make all | ||
- name: Deploy documentation | ||
run: | | ||
cd docs && make deploy |
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