Skip to content

Commit ee04ccd

Browse files
authored
CI: Fix test_jenkins (#10846)
1 parent def7672 commit ee04ccd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

contrib/test_jenkins.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,7 @@ run_ucx_perftest() {
449449
opt_transports="-x posix"
450450
tls="shm"
451451
dev="all"
452-
elif [[ " ${ip_ifaces[*]} " == *" ${ucx_dev} "* ]]; then
452+
elif printf '%s\n' "$ip_ifaces" | grep -qxF "$ucx_dev"; then
453453
opt_transports="-x tcp"
454454
tls="tcp"
455455
dev=$ucx_dev
@@ -688,7 +688,7 @@ run_mpi_tests() {
688688
-mca btl tcp,self \
689689
-mca btl_tcp_if_include lo \
690690
-mca orte_allowed_exit_without_sync 1 \
691-
-mca coll ^hcoll,ml"
691+
-mca coll ^hcoll,ml,ucc"
692692

693693
run_ucx_perftest 1
694694

0 commit comments

Comments
 (0)