Skip to content

Commit b63431e

Browse files
aarongreigkbenzie
authored andcommitted
Install doxygen on windows runners, re-enable generating spec on windows
1 parent cf9a934 commit b63431e

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/cmake.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,13 @@ jobs:
110110
- name: Install prerequisites
111111
run: python3 -m pip install -r third_party/requirements.txt
112112

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+
113120
- name: Configure CMake
114121
run: >
115122
cmake

0 commit comments

Comments
 (0)