Skip to content

Commit

Permalink
test partial deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
assignUser committed May 14, 2024
1 parent 34c306f commit 3f9b522
Show file tree
Hide file tree
Showing 2 changed files with 8,680 additions and 19 deletions.
41 changes: 22 additions & 19 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,25 +44,28 @@ jobs:
with:
fetch-depth: 0

- name: Install Dependencies
run: |
sudo apt update
sudo apt install -y pandoc
pip install sphinx sphinx-tabs breathe sphinx_rtd_theme chardet
- name: Build Documentation
run: |
pushd velox/docs
make clean
# pyvelox
mkdir -p bindings/python
pandoc ../../pyvelox/README.md --from markdown --to rst -s -o bindings/python/README_generated_pyvelox.rst
# velox
make html
popd
rm -rf _site
mkdir -p _site
cp -R velox/docs/_build/html/* _site
# - name: Install Dependencies
# run: |
# sudo apt update
# sudo apt install -y pandoc
# pip install sphinx sphinx-tabs breathe sphinx_rtd_theme chardet
#
# - name: Build Documentation
# run: |
# pushd velox/docs
# make clean
# # pyvelox
# mkdir -p bindings/python
# pandoc ../../pyvelox/README.md --from markdown --to rst -s -o bindings/python/README_generated_pyvelox.rst
# # velox
# make html
# popd
# rm -rf _site
# mkdir -p _site
# cp -R velox/docs/_build/html/* _site
- run: |
mkdir -p _site/build-metrics/
cp scripts/bm-report/report.html _site/build-metrics/index.html
- name: Configure GitHub Pages
uses: actions/configure-pages@v3
Expand Down
Loading

0 comments on commit 3f9b522

Please sign in to comment.