diff options
author | pmikus <peter.mikus@protonmail.ch> | 2024-02-15 10:22:27 +0000 |
---|---|---|
committer | Peter Mikus <peter.mikus@protonmail.ch> | 2024-02-15 10:24:17 +0000 |
commit | 21b541a696beb4c99c9293092f2f8ed381136f73 (patch) | |
tree | 2f5ee6c4fdb14e6937ba588c50676e69cde5e776 | |
parent | 714da679708536f7f67171121bf73457a962594c (diff) |
fix(core): daily jobs should not do prefixingoper-240212
Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: I131cc9957b288f4e02e9d02394a1681dbb539d83
(cherry picked from commit 5ac5ff150deaf930ae120a7f48cc2627508452ed)
-rw-r--r-- | resources/libraries/bash/function/common.sh | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/resources/libraries/bash/function/common.sh b/resources/libraries/bash/function/common.sh index 83886497ea..01d01e8ce5 100644 --- a/resources/libraries/bash/function/common.sh +++ b/resources/libraries/bash/function/common.sh @@ -1151,11 +1151,13 @@ function select_tags () { TAGS=() prefix="" - if [[ "${TEST_CODE}" == "vpp-"* ]]; then - if [[ "${TEST_CODE}" != *"device"* ]]; then - # Automatic prefixing for VPP perf jobs to limit the NIC used. - if [[ "${TEST_TAG_STRING-}" != *"nic_"* ]]; then - prefix="${default_nic}AND" + if [[ "${TEST_CODE}" != *"daily"* ]]; then + if [[ "${TEST_CODE}" == "vpp-"* ]]; then + if [[ "${TEST_CODE}" != *"device"* ]]; then + # Automatic prefixing for VPP perf jobs to limit the NIC used. + if [[ "${TEST_TAG_STRING-}" != *"nic_"* ]]; then + prefix="${default_nic}AND" + fi fi fi fi |