Skip to content

Commit 72e92de

Browse files
authored
Add Doxygen install to CI.yml
1 parent 8e89d94 commit 72e92de

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

Diff for: .github/workflows/ci.yml

+10-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,16 @@ jobs:
2525
# checkout source code
2626
- uses: actions/checkout@v2
2727

28-
# compile sipnet
28+
# install doxygen
29+
- name: Install Doxygen
30+
run: |
31+
if [[ "$RUNNER_OS" == "Linux" ]]; then
32+
sudo apt-get install doxygen -y
33+
elif [[ "$RUNNER_OS" == "macOS" ]]; then
34+
brew install doxygen
35+
fi
36+
37+
# compile SIPNET
2938
- name: compile sipnet
3039
run: make
3140

0 commit comments

Comments
 (0)