Skip to content

Commit

Permalink
[docs] Add doxygen to path in build
Browse files Browse the repository at this point in the history
The documentation build was failing because it could not find the doxygen
executable.

Add doxygen path to `$env:PATH` in build script. Add some messages to debug
failures that might happen in future.

Fixes #1086

Co-authored-by: Christopher Warrington <chwarr@microsoft.com>
  • Loading branch information
bhardwajs and chwarr authored Mar 9, 2021
1 parent df96fdd commit 27da749
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,10 @@
$env:Path = "$machinePath;$userPath"
$env:Path += "C:\Program Files\doxygen\bin"
Get-Command doxygen,pandoc
}
if (($env:BOND_BUILD -eq 'C++') -and (-not ($env:BOND_CMAKE_FLAGS -match '-DBOND_ENABLE_GRPC=FALSE'))) {
Expand Down

0 comments on commit 27da749

Please sign in to comment.