From 7a4c22611424672fa5012a56c39f1b484287432f Mon Sep 17 00:00:00 2001 From: Franziska Wegner <57569315+franziska-wegner@users.noreply.github.com> Date: Tue, 5 Dec 2023 02:35:05 -0800 Subject: [PATCH] Install Doxygen cmake-multi-platform.yml CMake failure due to missing Doxygen installation --- .github/workflows/cmake-multi-platform.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/cmake-multi-platform.yml b/.github/workflows/cmake-multi-platform.yml index 218228b8..9527309b 100644 --- a/.github/workflows/cmake-multi-platform.yml +++ b/.github/workflows/cmake-multi-platform.yml @@ -89,6 +89,11 @@ jobs: # echo "${{github.workspace}}/qt/Qt/${{ env.QT_VERSION }}/${{ env.MINGW_PATH }}/bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append # refreshenv + - name: Install Doxygen (Ubuntu) + run: | + sudo apt-get install doxygen + if: startsWith(matrix.config.os,'ubuntu-') + - name: Set reusable strings # Turn repeated input strings (such as the build output directory) into step outputs. These step outputs can be used throughout the workflow file. id: strings