From dc07a51d4b9ad09ef2556f25899231b22d8b7171 Mon Sep 17 00:00:00 2001 From: Yuri Weinstein Date: Mon, 25 Jan 2021 08:36:28 -0800 Subject: [PATCH] qa/tests: added pacific branch to the mix Signed-off-by: Yuri Weinstein --- qa/machine_types/schedule_subset.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/qa/machine_types/schedule_subset.sh b/qa/machine_types/schedule_subset.sh index 0970b294844..229b84b1657 100755 --- a/qa/machine_types/schedule_subset.sh +++ b/qa/machine_types/schedule_subset.sh @@ -46,7 +46,10 @@ elif [ $2 = "nautilus" ] ; then teuthology-suite -v -c $2 -m $3 -k $6 -s $4 --subset $(echo "(($(date +%U) % 4) * 7) + $1" | bc)/2999 -e $5 $7 elif [ $2 = "octopus" ] ; then teuthology-suite -v -c $2 -m $3 -k $6 -s $4 --subset $(echo "(($(date +%U) % 4) * 7) + $1" | bc)/9999 -e $5 $7 - # run nautilus branch with /100000 jobs fir rados == ~ 300 job + # run octopus branch with /100000 jobs for rados == ~ 300 job +elif [ $2 = "pacific" ] ; then + teuthology-suite -v -c $2 -m $3 -k $6 -s $4 --subset $(echo "(($(date +%U) % 4) * 7) + $1" | bc)/99999 -e $5 $7 + # run pacific branch with /99999 jobs for rados == ~ 367 job 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