bump version to 6.22.4 #39
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
name: documentation | |
on: | |
push: | |
branches: [main] | |
jobs: | |
build: | |
name: NFB Framework User Guide | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup and build | |
run: | | |
sudo apt-get install python3-pip doxygen git | |
sudo apt-get install autoconf automake libfdt-dev libnuma-dev libncurses-dev libarchive-dev libconfig-dev python3-dev python3-setuptools cython3 | |
pip3 install sphinx sphinx_rtd_theme breathe fdt | |
bash build.sh --prepare | |
(mkdir cmake-build; cd cmake-build; cmake --install-prefix=/usr/ ..; make; sudo make install) | |
(cd pynfb; pip3 install .) | |
sphinx-build -M html doc public | |
touch public/html/.nojekyll | |
- name: Deploy | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages | |
folder: public/html |