-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GHA: Clean up custom doxygen (#2201)
Handle installation and dependencies in one single place.
- Loading branch information
Showing
3 changed files
with
32 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: Set up doxygen | ||
description: | | ||
Download, build, and install doxygen. | ||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Install apt dependencies for doxygen | ||
run: | | ||
sudo apt-get update \ | ||
&& sudo apt-get install -y \ | ||
bison \ | ||
ragel \ | ||
graphviz \ | ||
texlive-latex-extra | ||
shell: bash | ||
|
||
- name: Download and build doxygen | ||
run: sudo scripts/downloadAndBuildDoxygen.sh | ||
shell: bash |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters