Skip to content

Commit

Permalink
remove unnecessary dependencies for document generation
Browse files Browse the repository at this point in the history
  • Loading branch information
koide3 committed Jun 21, 2024
1 parent a8200a2 commit 0797592
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 4 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/gendoc.yml
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
4 changes: 0 additions & 4 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,6 @@ markdown_extensions:
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- fontawesome_markdown

copyright: Copyright © 2024 Kenji Koide
extra:
Expand Down

0 comments on commit 0797592

Please sign in to comment.