Skip to content

Commit 8ced63c

Browse files
Added doxygen installation
1 parent 2aef8ba commit 8ced63c

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/linux.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,13 @@ jobs:
1818
repository: DiligentGraphics/DiligentEngine
1919
path: DiligentEngine
2020
submodules: true
21+
22+
- name: Install Doxygen
23+
shell: bash
24+
run: |
25+
DOXYGEN_VERSION=1.13.2
26+
wget https://doxygen.nl/files/doxygen-$DOXYGEN_VERSION.linux.bin.tar.gz
27+
tar -xzf doxygen-$DOXYGEN_VERSION.linux.bin.tar.gz
28+
sudo cp -r doxygen-$DOXYGEN_VERSION/bin/* /usr/local/bin/
29+
rm -rf doxygen-$DOXYGEN_VERSION*
30+
doxygen --version

0 commit comments

Comments
 (0)