Skip to content

Commit 4cc33c7

Browse files
committed
Fixed missing Qt install for CIs.
1 parent 28d7ff2 commit 4cc33c7

File tree

2 files changed

+13
-6
lines changed

2 files changed

+13
-6
lines changed

.github/workflows/codeql-analysis.yml

+7
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,13 @@ jobs:
5555
docker-images: true
5656
swap-storage: true
5757

58+
- name: Install Qt
59+
uses: jurplel/install-qt-action@v4
60+
with:
61+
version: 6.2.4 # Update Qt version here.
62+
aqtversion: '>=0.9.7'
63+
modules: 'qtimageformats'
64+
5865
# Initializes the CodeQL tools for scanning.
5966
- name: Initialize CodeQL
6067
uses: github/codeql-action/init@v1

tests/CMakeLists.txt

+6-6
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,12 @@ set_target_properties(DegateTests
5353
#
5454
# Automatic Qt deploy
5555
#
56-
qt_generate_deploy_app_script(
57-
TARGET DegateTests
58-
OUTPUT_SCRIPT deploy_script
59-
NO_UNSUPPORTED_PLATFORM_ERROR
60-
)
61-
install(SCRIPT ${deploy_script})
56+
# qt_generate_deploy_app_script(
57+
# TARGET DegateTests
58+
# OUTPUT_SCRIPT deploy_script
59+
# NO_UNSUPPORTED_PLATFORM_ERROR
60+
# )
61+
# install(SCRIPT ${deploy_script})
6262

6363
#
6464
# Link Catch2 tests to CTest

0 commit comments

Comments
 (0)