aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHeikki Halmet <heikki.halmet@qt.io>2024-04-15 10:57:46 +0000
committerHeikki Halmet <heikki.halmet@qt.io>2024-04-16 12:08:49 +0000
commit74d525040dd911c543f71c45d941d7242e4f1871 (patch)
tree7c63429dfea22159111bfb81dedadf86d0cf3dea
parent83b99967979b73a9df5a58004e7d4d9c16a4a411 (diff)
Don't run service autotests if target is only for Integration tests
This is needed e.g. when running integration tests for macOS 11 target and the build binaries are done by the latest macOS version. Currently macOS 11 autotests can't be run if build artifacts are done with macOS 14 Pick-to: 3.0 Change-Id: I630c78e68ebe1aed614e26ac9d6e1117df7805a8 Reviewed-by: Arttu Tarkiainen <arttu.tarkiainen@qt.io>
-rw-r--r--coin/instructions/test_licene_check.yaml11
1 files changed, 8 insertions, 3 deletions
diff --git a/coin/instructions/test_licene_check.yaml b/coin/instructions/test_licene_check.yaml
index 6f21863..2518d66 100644
--- a/coin/instructions/test_licene_check.yaml
+++ b/coin/instructions/test_licene_check.yaml
@@ -28,6 +28,11 @@ instructions:
userMessageOnFailure: >
Failed to run tests!
disable_if:
- condition: property
- property: host.osVersion
- contains_value: CentOS
+ condition: or
+ conditions:
+ - condition: property
+ property: host.osVersion
+ contains_value: CentOS
+ - condition: property
+ property: features
+ contains_value: IntegrationTestOnly