This commit is contained in:
jkriege2 2023-03-23 13:55:31 +01:00
commit 848ec1952a
2 changed files with 6 additions and 5 deletions

View File

@ -23,7 +23,7 @@ on:
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
permissions:
actions: read
contents: read

View File

@ -16,7 +16,7 @@ jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
@ -30,14 +30,15 @@ jobs:
sudo apt-get update
sudo apt-get update --fix-missing
sudo apt-get install -f
sudo apt -y install build-essential doxygen graphviz doxygen-latex clang-9 libclang-9-dev libclang-cpp9 fonts-freefont-ttf
sudo apt -y install build-essential doxygen graphviz doxygen-latex libclang-common-10-dev libclang-10-dev fonts-freefont-ttf
doxygen -v
- name: Update Doxygen to 1.9.3
- name: Update Doxygen to 1.9.6
run: |
currDir=`pwd`
cd $GITHUB_WORKSPACE
mkdir doxygen
wget -O - https://netcologne.dl.sourceforge.net/project/doxygen/rel-1.9.3/doxygen-1.9.3.linux.bin.tar.gz | tar --strip-components=1 -xz -C doxygen
wget -O - https://github.com/doxygen/doxygen/releases/download/Release_1_9_6/doxygen-1.9.6.linux.bin.tar.gz | tar --strip-components=1 -xz -C doxygen
export PATH=$GITHUB_WORKSPACE/doxygen/bin:${PATH}
echo PATH=$PATH
cd $currDir