From 2aec1a824c60102ff2a94e912dd085ac3bc1752d Mon Sep 17 00:00:00 2001 From: Yuri Weinstein Date: Fri, 22 Mar 2019 08:21:29 -0700 Subject: [PATCH] qa/tests: added the subset clause for nuatilis branch --subset x/2999 should generate ~250 jobs as result Signed-off-by: Yuri Weinstein --- qa/machine_types/schedule_subset.sh | 3 +++ 1 file changed, 3 insertions(+) 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 -- 2.47.3