Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

various improvments to docs #193

Merged
merged 14 commits into from
Jun 12, 2022
Prev Previous commit
Next Next commit
improve doxygen CI
  • Loading branch information
2bndy5 committed Jun 11, 2022
commit 6cdf4fa1fe45d266c6f4ffb26ac5a60ec4551259
18 changes: 13 additions & 5 deletions .github/workflows/doxygen.yml
Original file line number Diff line number Diff line change
@@ -40,11 +40,19 @@ jobs:
touch doxygenAction
echo "PROJECT_NUMBER = ${{ steps.latest_ver.outputs.release }}" >> doxygenAction
echo "@INCLUDE = doxygenAction" >> Doxyfile
- name: build doxygen
uses: mattnotmitt/doxygen-action@v1
with:
working-directory: '.'
doxyfile-path: './Doxyfile'
- name: install graphviz and libclang deps
run: sudo apt-get install graphviz libclang1-9 libclang-cpp9
- name: install doxygen from SF binary archives
env:
DOXYGEN_VERSION: '1.9.4'
run: |
mkdir doxygen && cd doxygen
curl -L https://sourceforge.net/projects/doxygen/files/rel-$DOXYGEN_VERSION/doxygen-$DOXYGEN_VERSION.linux.bin.tar.gz > doxygen.tar.gz
gunzip doxygen.tar.gz
tar xf doxygen.tar
cd doxygen-$DOXYGEN_VERSION
sudo make install
- run: doxygen
- name: Save doxygen docs as artifact
uses: actions/upload-artifact@v2
with: