Browse Source

Fix "Doc build" CI job.

It seems that Doxygen 1.9.1 was removed; this upgrades to 1.9.3.
pull/3637/head
Chris Fallin 3 years ago
parent
commit
54a59ff832
  1. 4
      .github/workflows/main.yml

4
.github/workflows/main.yml

@ -66,8 +66,8 @@ jobs:
# Build C API documentation
- run: sudo apt-get update -y && sudo apt-get install -y libclang1-9 libclang-cpp9
- run: curl -L https://doxygen.nl/files/doxygen-1.9.1.linux.bin.tar.gz | tar xzf -
- run: echo "`pwd`/doxygen-1.9.1/bin" >> $GITHUB_PATH
- run: curl -L https://www.doxygen.nl/files/doxygen-1.9.3.linux.bin.tar.gz | tar xzf -
- run: echo "`pwd`/doxygen-1.9.3/bin" >> $GITHUB_PATH
- run: cd crates/c-api && doxygen doxygen.conf
# install mdbook, build the docs, and test the docs

Loading…
Cancel
Save