From ea534a7336209473433b0fe4affe4c3cf70a71e0 Mon Sep 17 00:00:00 2001 From: Adam Honse Date: Tue, 22 Jul 2025 17:59:38 -0500 Subject: [PATCH] Add Windows Qt6 CI targets --- .gitlab-ci.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7e5a9a4..a6702cc 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -207,6 +207,22 @@ before_script: - openrgb-plugin-e131-receiver-dbgsym*.deb expire_in: 30 days +#-----------------------------------------------------------------------# +# Windows (32-bit) Qt6 Build Target # +#-----------------------------------------------------------------------# +"Windows 32 Qt6": + extends: + - .shared_windows_runners + stage: build + script: + - scripts\build-windows.bat 6.8.3 2022 32 + - mv "OpenRGBE131ReceiverPlugin Windows 32-Bit\OpenRGBE131ReceiverPlugin.dll" . + artifacts: + name: "${CI_PROJECT_NAME}_Windows_32_${CI_COMMIT_SHORT_SHA}" + paths: + - OpenRGBE131ReceiverPlugin.dll + expire_in: 30 days + #-----------------------------------------------------------------------# # Windows (32-bit) Build Target # #-----------------------------------------------------------------------# @@ -223,6 +239,22 @@ before_script: - OpenRGBE131ReceiverPlugin.dll expire_in: 30 days +#-----------------------------------------------------------------------# +# Windows (64-bit) Qt6 Build Target # +#-----------------------------------------------------------------------# +"Windows 64 Qt6": + extends: + - .shared_windows_runners + stage: build + script: + - scripts\build-windows.bat 6.8.3 2022 64 + - mv "OpenRGBE131ReceiverPlugin Windows 64-Bit\OpenRGBE131ReceiverPlugin.dll" . + artifacts: + name: "${CI_PROJECT_NAME}_Windows_64_${CI_COMMIT_SHORT_SHA}" + paths: + - OpenRGBE131ReceiverPlugin.dll + expire_in: 30 days + #-----------------------------------------------------------------------# # Windows (64-bit) Build Target # #-----------------------------------------------------------------------#