aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAssam Boudjelthia <assam.boudjelthia@qt.io>2023-07-31 12:06:54 +0300
committerAssam Boudjelthia <assam.boudjelthia@qt.io>2023-09-12 09:38:57 +0000
commit1890fc3f237522e0facc2d0b4b1650a118c7982e (patch)
tree1144f6933a58029f8ff7581806a8638f9f81c82f
parentf654edcfc9331a8687eb4d4ecd849a967f357d28 (diff)
Android: Add missing ANDROID_EMULATOR param to Multi-ABI test targetv6.6.0-beta4
The Multi-ABI targets run a subset of Android tests but the target doesn't explicitly set the name of the Android emulator to run, so it was defaulting to Android 6 because the CI Android emulator runner script defaults to that. The latter is going change to be more explicit, so this needs to be explicit also. Change-Id: Ifd5ddd5b5cf3b7a1b275f5a7b1252a21ae3165bc Reviewed-by: Alexey Edelev <alexey.edelev@qt.io> (cherry picked from commit 2e96d4eefa842b382dfe0ace628e61aea7597d64)
-rw-r--r--coin/platform_configs/linux_android_tests_multi_abi.yaml3
1 files changed, 2 insertions, 1 deletions
diff --git a/coin/platform_configs/linux_android_tests_multi_abi.yaml b/coin/platform_configs/linux_android_tests_multi_abi.yaml
index 0c75b934..80550b4a 100644
--- a/coin/platform_configs/linux_android_tests_multi_abi.yaml
+++ b/coin/platform_configs/linux_android_tests_multi_abi.yaml
@@ -22,5 +22,6 @@ Configurations:
'QT_CI_ARTIFACT_ID_PATH_Android-host=QT_CI_ARTIFACT_ID_PATH_rhel-8.6',
'QT_CI_ARTIFACT_ID_PATH_Android-x86=QT_CI_ARTIFACT_ID_PATH_android-6-x86-on-linux',
'QT_CI_ARTIFACT_ID_PATH_Android-x86_64=QT_CI_ARTIFACT_ID_PATH_android-13-x86_64-on-linux',
- 'COMMON_TARGET_TEST_CMAKE_ARGS=-DQT_ANDROID_ABIS="x86;x86_64"'
+ 'COMMON_TARGET_TEST_CMAKE_ARGS=-DQT_ANDROID_ABIS="x86;x86_64"',
+ 'ANDROID_EMULATOR=@emulator_x86_api_23'
]