File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change 21
21
# so we fetch that through pip.
22
22
CMAKE_VERSION : 3.20.5
23
23
DOXYGEN_VERSION : 1.12.0
24
+ DOXYGEN_MD5SUM : fd96a5defa535dfe2e987b46540844a4
24
25
JOB_COUNT : 4
25
26
26
27
jobs :
72
73
sudo apt-get update
73
74
sudo apt-get install -y wget python3-pip git ninja-build graphviz lcov
74
75
wget --no-verbose "https://github.com/doxygen/doxygen/releases/download/Release_${DOXYGEN_VERSION//./_}/doxygen-${DOXYGEN_VERSION}.linux.bin.tar.gz"
76
+ echo "${DOXYGEN_MD5SUM} doxygen-${DOXYGEN_VERSION}.linux.bin.tar.gz" | md5sum -c
77
+ if [ $? -ne 0 ]; then
78
+ echo "Failed to verify doxygen tarball"
79
+ exit 1
80
+ fi
75
81
sudo tar xf doxygen-${DOXYGEN_VERSION}.linux.bin.tar.gz -C /opt
76
82
echo "/opt/doxygen-${DOXYGEN_VERSION}/bin" >> $GITHUB_PATH
77
83
echo "${HOME}/.local/bin" >> $GITHUB_PATH
You can’t perform that action at this time.
0 commit comments