We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf9a934 commit b63431eCopy full SHA for b63431e
.github/workflows/cmake.yml
@@ -110,6 +110,13 @@ jobs:
110
- name: Install prerequisites
111
run: python3 -m pip install -r third_party/requirements.txt
112
113
+ - name: Install doxygen
114
+ run: |
115
+ $WorkingDir = $PWD.Path
116
+ Invoke-WebRequest -Uri https://github.com/doxygen/doxygen/releases/download/Release_1_9_8/doxygen-1.9.8.windows.x64.bin.zip -OutFile "$WorkingDir\doxygen.zip"
117
+ Expand-Archive -Path "$WorkingDir\doxygen.zip"
118
+ Add-Content $env:GITHUB_PATH "$WorkingDir\doxygen"
119
+
120
- name: Configure CMake
121
run: >
122
cmake
0 commit comments