From: Yuri Weinstein Date: Fri, 22 Mar 2019 15:21:29 +0000 (-0700) Subject: qa/tests: added the subset clause for nuatilis branch X-Git-Tag: v15.0.0~120^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=2aec1a824c60102ff2a94e912dd085ac3bc1752d;p=ceph.git qa/tests: added the subset clause for nuatilis branch --subset x/2999 should generate ~250 jobs as result Signed-off-by: Yuri Weinstein --- diff --git a/qa/machine_types/schedule_subset.sh b/qa/machine_types/schedule_subset.sh index 005d0dcc427c..6364f4af7b21 100755 --- a/qa/machine_types/schedule_subset.sh +++ b/qa/machine_types/schedule_subset.sh @@ -43,6 +43,9 @@ elif [ $2 = "luminous" ] ; then elif [ $2 = "mimic" ] ; then # run mimic branch with /999 jobs teuthology-suite -v -c $2 -m $3 -k $6 -s $4 --subset $(echo "(($(date +%U) % 4) * 7) + $1" | bc)/999 -e $5 $7 +elif [ $2 = "nautilus" ] ; then + # run nautilus branch with /2999 jobs == ~ 250 jobs + teuthology-suite -v -c $2 -m $3 -k $6 -s $4 --subset $(echo "(($(date +%U) % 4) * 7) + $1" | bc)/2999 -e $5 $7 else # run NON master branches without --newest teuthology-suite -v -c $2 -m $3 -k $6 -s $4 --subset $(echo "(($(date +%U) % 4) * 7) + $1" | bc)/999 -e $5 $7