forked from ceph/teuthology
-
Notifications
You must be signed in to change notification settings - Fork 0
/
schedule_suite.sh
executable file
·214 lines (191 loc) · 5.1 KB
/
schedule_suite.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
#!/bin/bash
suite=$1
ceph=$2
kernel=$3
email=$4
flavor=$5
teuthology_branch=$6
mtype=$7
template=$8
distro=$9
limit=${10}
extra_args=""
if [ -z "$limit" ]
then
limitline=''
else
limitline="--limit $limit"
fi
if [ -z "$kernel" ]; then
echo "usage: $0 <suite> <ceph branch> <kernel branch> [email] [flavor] [teuthology-branch] [machinetype] [template] [distro]"
echo " flavor can be 'basic', 'gcov', 'notcmalloc'."
echo " PRIO=123 in the environment sets priority (default 1000, smaller=higher)"
exit 1
fi
if [ -z "$email" ]
then
email='ceph-qa@ceph.com'
email_specified=0
else
email_specified=1
fi
[ -z "$flavor" ] && flavor='basic'
[ -z "$distro" ] && distro='ubuntu'
[ -z "$mtype" ] && mtype='plana'
multi=`echo $mtype | awk -F' |,|-|\t' '{print NF}'`
if [ $multi -gt 1 ]
then
tube=multi
else
tube=$mtype
fi
if [ "$PRIO" != "" ]; then
extra_args="$extra_args --priority $PRIO"
fi
stamp=`date +%Y-%m-%d_%H:%M:%S`
nicesuite=`echo $suite | sed 's/\//:/g'`
name=`whoami`"-$stamp-$nicesuite-$ceph-$kernel-$flavor-$tube"
function schedule_fail {
SUBJECT="Failed to schedule $name"
MESSAGE="$@"
echo $SUBJECT:
echo $MESSAGE
if [ ! -z "$email" ] && [ "$email_specified" -eq 1 ]
then
echo "$MESSAGE" | mail -s "$SUBJECT" $email
fi
exit 1
}
if [ "$kernel" = "-" ]
then
kernelvalue=""
else
if [ "$kernel" = "distro" ]
then
KERNEL_SHA1=distro
else
KERNEL_SHA1=`wget http://gitbuilder.ceph.com/kernel-deb-precise-x86_64-basic/ref/$kernel/sha1 -O- 2>/dev/null`
fi
[ -z "$KERNEL_SHA1" ] && schedule_fail "Couldn't find kernel branch $kernel"
kernelvalue="kernel:
kdb: true
sha1: $KERNEL_SHA1"
fi
##
[ ! -d ~/src/ceph-qa-suite ] && schedule_fail "error: expects to find ~/src/ceph-qa-suite"
[ ! -d ~/src/teuthology/virtualenv/bin ] && schedule_fail "error: expects to find ~/src/teuthology/virtualenv/bin"
echo kernel sha1 $KERNEL_SHA1
## get sha1
if [ "$distro" = "ubuntu" ]
then
if [ "$mtype" = "saya" ]
then
CEPH_SHA1=`wget http://gitbuilder.ceph.com/ceph-deb-saucy-armv7l-$flavor/ref/$ceph/sha1 -O- 2>/dev/null`
else
CEPH_SHA1=`wget http://gitbuilder.ceph.com/ceph-deb-precise-x86_64-$flavor/ref/$ceph/sha1 -O- 2>/dev/null`
fi
else
CEPH_SHA1=`wget http://gitbuilder.ceph.com/ceph-rpm-centos6-x86_64-$flavor/ref/$ceph/sha1 -O- 2>/dev/null`
fi
[ -z "$CEPH_SHA1" ] && schedule_fail "Can't find ceph branch $ceph"
echo ceph sha1 $CEPH_SHA1
# Are there packages for this sha1?
if [ "$distro" = "ubuntu" ]
then
if [ "$mtype" = "saya" ]
then
CEPH_VER=`wget http://gitbuilder.ceph.com/ceph-deb-saucy-armv7l-$flavor/sha1/$CEPH_SHA1/version -O- 2>/dev/null`
else
CEPH_VER=`wget http://gitbuilder.ceph.com/ceph-deb-precise-x86_64-$flavor/sha1/$CEPH_SHA1/version -O- 2>/dev/null`
fi
else
CEPH_VER=`wget http://gitbuilder.ceph.com/ceph-rpm-centos6-x86_64-$flavor/sha1/$CEPH_SHA1/version -O- 2>/dev/null`
fi
[ -z "$CEPH_VER" ] && schedule_fail "Can't find packages for ceph branch $ceph sha1 $CEPH_SHA1"
if [ -n "$teuthology_branch" ] && wget http://github.com/ceph/s3-tests/tree/$teuthology_branch -O- 2>/dev/null >/dev/null ; then
s3branch=$teuthology_branch
elif wget http://github.com/ceph/s3-tests/tree/$ceph -O- 2>/dev/null >/dev/null ; then
s3branch=$ceph
else
echo "branch $ceph not in s3-tests.git; will use master for s3tests"
s3branch='master'
fi
echo "s3branch $s3branch"
if [ -z "$teuthology_branch" ]; then
if wget http://github.com/ceph/teuthology/tree/$ceph -O- 2>/dev/null >/dev/null ; then
teuthology_branch=$ceph
else
echo "branch $ceph not in teuthology.git; will use master for teuthology"
teuthology_branch='master'
fi
fi
echo "teuthology branch $teuthology_branch"
## always include this
fn="/tmp/schedule.suite.$$"
trap "rm $fn" EXIT
cat <<EOF > $fn
teuthology_branch: $teuthology_branch
$kernelvalue
nuke-on-error: true
machine_type: $mtype
os_type: $distro
branch: $ceph
suite: $nicesuite
tasks:
- chef:
- clock.check:
overrides:
workunit:
sha1: $CEPH_SHA1
s3tests:
branch: $s3branch
install:
ceph:
sha1: $CEPH_SHA1
ceph:
sha1: $CEPH_SHA1
conf:
mon:
debug ms: 1
debug mon: 20
debug paxos: 20
osd:
debug ms: 1
debug osd: 20
debug filestore: 20
debug journal: 20
log-whitelist:
- slow request
ceph-deploy:
branch:
dev: $ceph
conf:
mon:
osd default pool size: 2
debug mon: 1
debug paxos: 20
debug ms: 20
client:
log file: /var/log/ceph/ceph-\$name.\$pid.log
admin_socket:
branch: $ceph
EOF
if [ "$flavor" = "gcov" ]; then
cat <<EOF >> $fn
coverage: yes
EOF
fi
## template, too?
if [ -n "$template" ]; then
sed s/CEPH_SHA1/$CEPH_SHA1/ $template | sed s/KERNEL_SHA1/$KERNEL_SHA1/ >> $fn
fi
echo "name $name"
./virtualenv/bin/teuthology-suite -v $fn \
--base ~/src/ceph-qa-suite/suites \
--collections $suite \
--email $email \
--timeout 36000 \
$limitline \
--name $name \
--worker $tube \
$extra_args