From 772f06b67558564c8870ae88cfabe6e1fb7f79d5 Mon Sep 17 00:00:00 2001 From: kareem zarka <kareem.zarka@huawei.com> Date: Thu, 3 Aug 2023 12:27:45 +0200 Subject: [PATCH] gitlab-ci : edit xdevice to run only ActsFeatureAbilityTest This is needed to speed up the process without waiting for other tests. Signed-off-by: kareem zarka <kareem.zarka@huawei.com> --- .gitlab-ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 020ec5d..0c2bd51 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -427,7 +427,8 @@ acts: if [[ "$hdc_result" == "Connect OK"* ]] ; then break ; fi ; sleep $HDC_CONNECT_DELAY ; let i=i+1 ; done ; if [ "$i" -eq $HDC_CONNECT_ATTEMPTS ] ; then exit 1 ; fi - - xdevice run acts -l $(echo "$ACTS_TESTS"|tr ' ' ';') + - xdevice run acts -l ActsFeatureAbilityTest $(echo "$ACTS_TESTS"|tr ' ' ';') + artifacts: when: always paths: -- GitLab