summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichal Klocek <[email protected]>2025-07-01 10:31:06 +0200
committerMichal Klocek <[email protected]>2025-07-01 20:28:02 +0200
commitae8e4964c50fe134c2d45c3c1f78944158e94806 (patch)
tree662d9bab500603c8408d191050f0b5ec801b9915
parentc991e3f2ad7ad3b1bbb7bb74466547c5e2237003 (diff)
Disable build on WoA 11 23h2HEADdev
Note 'in_values' syntax seems not to work with strings Task-number: QTQAINFRA-6973 Pick-to: 6.10 6.9 Change-Id: I1856316664a557a9a097217ea5cb649903580a1c Reviewed-by: Tero Heikkinen <[email protected]>
-rw-r--r--coin.nodes1
-rw-r--r--coin/module_config.yaml11
2 files changed, 9 insertions, 3 deletions
diff --git a/coin.nodes b/coin.nodes
index e002b0c35..d577e4880 100644
--- a/coin.nodes
+++ b/coin.nodes
@@ -36,6 +36,7 @@ webassembly-linux-thread-asyncify OFF OFF
windows-10_22h2-msvc2022 ON ON
windows-10_22h2-mingw13 OFF ON
windows-11_22h2-arm64-msvc2022 OFF ON
+windows-11_23h2-arm64-msvc2022 OFF ON
windows-11_23H2-llvm OFF ON
windows-11_23H2-msvc2022-arm64 ON ON
windows-11_23H2-msvc2022 ON ON
diff --git a/coin/module_config.yaml b/coin/module_config.yaml
index b812baa43..e892a2100 100644
--- a/coin/module_config.yaml
+++ b/coin/module_config.yaml
@@ -45,9 +45,14 @@ instructions:
variableName: COMMON_NON_QTBASE_CMAKE_ARGS
variableValue: " -DFEATURE_qtwebengine_build=OFF"
enable_if:
- condition: runtime
- env_var: COIN_PLATFORM_ID
- contains_value: "windows-11_22h2-arm64-msvc2022"
+ condition: or
+ conditions:
+ - condition: runtime
+ env_var: COIN_PLATFORM_ID
+ contains_value: "windows-11_22h2-arm64-msvc2022"
+ - condition: runtime
+ env_var: COIN_PLATFORM_ID
+ contains_value: "windows-11_23h2-arm64-msvc2022"
- type: AppendToEnvironmentVariable
variableName: COMMON_NON_QTBASE_TARGET_CMAKE_ARGS
variableValue: " -DFEATURE_qtwebengine_build=OFF"