CI/Docs: Generate docs locally before uploading to registry

This commit is contained in:
David Cermak
2021-11-12 16:24:41 +01:00
parent b9ff1e4e12
commit 2c21aa1113
4 changed files with 20 additions and 30 deletions

View File

@ -1,5 +1,8 @@
apk add clang g++ doxygen
pip install breathe==4.29.0
cd components/esp_modem/docs/
#!/bin/bash
apt-get update
apt-get -y install doxygen clang python3-pip
python -m pip install breathe recommonmark
pushd components/esp_modem/docs
./generate_docs
cd ../../..
popd