Skip to content

Commit

Permalink
Merge pull request #5 from VikingGuenter/master
Browse files Browse the repository at this point in the history
QtCreator 14.0 support
  • Loading branch information
vivaladav authored Aug 30, 2024
2 parents a6fc4db + 625db7c commit e6c4054
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/cmake-multi-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ on:

env:
PLUGIN_NAME: SIGBUILD
QT_VERSION: 6.6.0
QT_CREATOR_VERSION: 13.0.0
QT_VERSION: 6.7.2
QT_CREATOR_VERSION: 14.0.0
QT_CREATOR_SNAPSHOT: NO
CMAKE_VERSION: 3.24.2
NINJA_VERSION: 1.10.2
Expand Down Expand Up @@ -120,12 +120,12 @@ jobs:
set(qt_package_suffix "-Windows-Windows_10_22H2-MSVC2019-Windows-Windows_10_22H2-X86_64")
elseif ("${{ runner.os }}" STREQUAL "Linux")
set(url_os "linux_x64")
set(qt_package_arch_suffix "gcc_64")
set(qt_package_arch_suffix "linux_gcc_64")
set(qt_dir_prefix "${qt_version}/gcc_64")
if("${qt_version_major}" STREQUAL "5")
set(qt_package_suffix "-Linux-RHEL_7_6-GCC-Linux-RHEL_7_6-X86_64")
else()
set(qt_package_suffix "-Linux-RHEL_8_6-GCC-Linux-RHEL_8_6-X86_64")
set(qt_package_suffix "-Linux-RHEL_8_8-GCC-Linux-RHEL_8_8-X86_64")
endif()
endif()
Expand All @@ -140,7 +140,7 @@ jobs:
# Save the path for other steps
file(TO_CMAKE_PATH "$ENV{GITHUB_WORKSPACE}/qt/${qt_dir_prefix}" qt_dir)
message("::set-output name=qt_dir::${qt_dir}")
file(APPEND "$ENV{GITHUB_OUTPUT}" "qt_dir=${qt_dir}")
message("[DBG] qt_dir=${qt_dir}")
# download Qt
Expand Down Expand Up @@ -213,7 +213,7 @@ jobs:
# uic depends on libicu56.so
if ("${{ runner.os }}" STREQUAL "Linux")
downloadAndExtract(
"${qt_base_url}/qt.qt${qt_version_major}.${qt_version_dotless}.${qt_package_arch_suffix}/${qt_package_version}icu-linux-Rhel7.2-x64.7z"
"${qt_base_url}/qt.qt${qt_version_major}.${qt_version_dotless}.${qt_package_arch_suffix}/${qt_package_version}icu-linux-Rhel8.6-x86_64.7z"
icu.7z
)
endif()
Expand All @@ -236,9 +236,9 @@ jobs:
set(qtc_platform "linux_x64")
endif()
file(TO_CMAKE_PATH "$ENV{GITHUB_WORKSPACE}/qtcreator" qtc_dir)
# Save the path for other steps
message("::set-output name=qtc_dir::${qtc_dir}")
file(TO_CMAKE_PATH "$ENV{GITHUB_WORKSPACE}/qtcreator" qtc_dir)
file(APPEND "$ENV{GITHUB_OUTPUT}" "qtc_dir=${qtc_dir}")
message("[DBG] qtc_dir=${qtc_dir}")
file(MAKE_DIRECTORY qtcreator)
Expand Down
4 changes: 2 additions & 2 deletions SIGBUILD.json.in
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"Name" : "SIGBUILD",
"Version" : "0.4.5",
"CompatVersion" : "0.4.5",
"Version" : "0.4.6",
"CompatVersion" : "0.4.6",
"Vendor" : "Davide Coppola",
"Copyright" : "(C) Davide Coppola",
"License" : "GPL v3.",
Expand Down

0 comments on commit e6c4054

Please sign in to comment.