From 5e1932c344a859bbbbc2a494882415a84cf9a2db Mon Sep 17 00:00:00 2001 From: Franziska Wegner Date: Thu, 28 Dec 2023 01:42:14 -0800 Subject: [PATCH] Separate Qt6 installation Changes to be committed: modified: .github/workflows/developer-guideline-check.yml --- .github/workflows/developer-guideline-check.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/developer-guideline-check.yml b/.github/workflows/developer-guideline-check.yml index 3a749366..89207da4 100644 --- a/.github/workflows/developer-guideline-check.yml +++ b/.github/workflows/developer-guideline-check.yml @@ -27,6 +27,14 @@ jobs: # Optionally generate compile_commands.json + - name: Install Qt + uses: jurplel/install-qt-action@v3 + with: + version: ${{ env.QT_VERSION }} + cache: 'true' + cache-key-prefix: ${{ runner.os }}-Qt-Cache-${{ env.QT_VERSION }} + dir: ${{ github.workspace }}/Qt + - 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 @@ -38,8 +46,8 @@ jobs: id: review with: clang_tidy_checks: -*,performance-*,readability-*,bugprone-*,clang-analyzer-*,cppcoreguidelines-*,mpi-*,misc-* - # List of packages to install - apt_packages: qt6 + # List of packages to install, does not work + # apt_packages: qt6 # CMake command to run in order to generate compile_commands.json cmake_command: cmake -B ${{ steps.strings.outputs.build-output-dir }} -DCMAKE_EXPORT_COMPILE_COMMANDS=on