]> git-server-git.apps.pok.os.sepia.ceph.com Git - teuthology.git/commitdiff
Remove schedule_suite.sh
authorZack Cerza <zack@cerza.org>
Tue, 24 Jun 2014 14:49:39 +0000 (08:49 -0600)
committerZack Cerza <zack@cerza.org>
Wed, 25 Jun 2014 18:54:23 +0000 (12:54 -0600)
Its entire functionality is now provided by teuthology-schedule.

Signed-off-by: Zack Cerza <zack.cerza@inktank.com>
schedule_suite.sh [deleted file]

diff --git a/schedule_suite.sh b/schedule_suite.sh
deleted file mode 100755 (executable)
index bebed9c..0000000
+++ /dev/null
@@ -1,208 +0,0 @@
-#!/bin/bash
-
-suite=$1
-ceph=$2
-kernel=$3
-email=$4
-flavor=$5
-teuthology_branch=$6
-mtype=$7
-distro=$8
-limit=${9}
-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] [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
-
-echo "name $name"
-
-./virtualenv/bin/teuthology-suite -v $fn \
-    --base ~/src/ceph-qa-suite/suites \
-    --suite $suite \
-    --email $email \
-    --timeout 36000 \
-    $limitline \
-    --name $name \
-    --worker $tube \
-    $extra_args