From d8c4c209fa548c1afa165236d60c4fea6fb87116 Mon Sep 17 00:00:00 2001 From: Lars Melchior Date: Wed, 12 Mar 2025 19:20:45 +0100 Subject: [PATCH] switch to ubunto for documentation workflow --- .github/workflows/documentation.yaml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/documentation.yaml b/.github/workflows/documentation.yaml index 398e63c..454d91b 100644 --- a/.github/workflows/documentation.yaml +++ b/.github/workflows/documentation.yaml @@ -15,7 +15,7 @@ permissions: jobs: build: name: Build and publish documentation - runs-on: macos-latest + runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 @@ -24,11 +24,15 @@ jobs: path: "**/cpm_modules" key: ${{ github.workflow }}-cpm-modules-${{ hashFiles('**/CMakeLists.txt', '**/*.cmake') }} - - name: Install dependencies + - name: Install python dependencies run: | - brew install doxygen - pip3 install jinja2 Pygments + pip3 install jinja2==3.1.6 Pygments==2.19.1 + - name: Install Doxygen + uses: ssciwr/doxygen-install@v1 + with: + version: "1.13.2" + - name: Build run: | cmake -Sdocumentation -Bbuild