ci: install doxygen with conda instead of apt (#16576)

This provides a newer version of Doxygen (1.9.0 or later)
that fixes a bug in the documentation generator.

Closes #16498
This commit is contained in:
github-actions[bot]
2021-12-08 09:30:16 -07:00
committed by GitHub
parent 1d32521135
commit 3c0f239c3e

View File

@@ -26,7 +26,9 @@ jobs:
- name: Install dependencies
run: |
sudo apt-get update
sudo env DEBIAN_FRONTEND=noninteractive apt-get install -y doxygen python3 python3-msgpack luajit
sudo env DEBIAN_FRONTEND=noninteractive apt-get install -y python3 luajit
conda install -c conda-forge doxygen=1.9.2 msgpack-python
echo "$CONDA/bin" >> $GITHUB_PATH
- name: Setup git config
run: |