File tree Expand file tree Collapse file tree 3 files changed +10
-10
lines changed
Expand file tree Collapse file tree 3 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 1919jobs :
2020 docs :
2121 name : Build main documentation
22- runs-on : ubuntu-20 .04
22+ runs-on : ubuntu-22 .04
2323 steps :
2424 - uses : actions/checkout@v4
2525 - name : Install packages
2626 run : |
2727 sudo apt-get update
28- sudo apt-get install --no-install-recommends -y graphviz plantuml libclang1-9 libclang-cpp1-9
29- - name : Install doxygen 1.9.2
28+ sudo apt-get install --no-install-recommends -y graphviz plantuml
29+ - name : Install doxygen 1.9.6
3030 run : |
31- wget -O doxygen.tgz https://sourceforge.net/projects/doxygen/files/rel-1.9.2 /doxygen-1.9.2 .linux.bin.tar.gz/download
31+ wget -O doxygen.tgz https://sourceforge.net/projects/doxygen/files/rel-1.9.6 /doxygen-1.9.6 .linux.bin.tar.gz/download
3232 sudo tar -C /opt -xf doxygen.tgz
33- sudo ln -s /opt/doxygen-1.9.2 /bin/doxygen /usr/local/bin/
33+ sudo ln -s /opt/doxygen-1.9.6 /bin/doxygen /usr/local/bin/
3434 which doxygen
3535 doxygen --version
3636 - name : Install linkchecker
Original file line number Diff line number Diff line change 1212jobs :
1313 pack :
1414 name : Validate pack schema
15- runs-on : ubuntu-20 .04
15+ runs-on : ubuntu-22 .04
1616 steps :
1717 - uses : actions/checkout@v4
1818 with :
5757
5858 index :
5959 name : Validate index schema
60- runs-on : ubuntu-20 .04
60+ runs-on : ubuntu-22 .04
6161 steps :
6262 - uses : actions/checkout@v4
6363 - name : Install packages
Original file line number Diff line number Diff line change 55#
66# Pre-requisites:
77# - bash shell (for Windows: install git for Windows)
8- # - doxygen 1.9.2
8+ # - doxygen 1.9.6
99
1010set -o pipefail
1111
@@ -21,8 +21,8 @@ if [[ ! -f "${DOXYGEN}" ]]; then
2121else
2222 version=$( " ${DOXYGEN} " --version | sed -r -e ' s/.*([1-9][0-9]*\.[0-9]+\.[0-9]+).*/\1/' )
2323 echo " DOXYGEN is ${DOXYGEN} at version ${version} "
24- if [[ " ${version} " != " 1.9.2 " ]]; then
25- echo " >> Version is different from 1.9.2 !" >&2
24+ if [[ " ${version} " != " 1.9.6 " ]]; then
25+ echo " >> Version is different from 1.9.6 !" >&2
2626 fi
2727fi
2828
You can’t perform that action at this time.
0 commit comments