From: Cliff Brake Date: Fri, 4 Feb 2011 14:37:24 +0000 (-0500) Subject: update-testing-branch.sh: script to do the weekly testing branch update X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=db60254c965392e21ba5438b1530cb7049574dfa;p=openembedded.git update-testing-branch.sh: script to do the weekly testing branch update --- diff --git a/contrib/testing/update-testing-branch.sh b/contrib/testing/update-testing-branch.sh new file mode 100755 index 0000000000..2c48af1257 --- /dev/null +++ b/contrib/testing/update-testing-branch.sh @@ -0,0 +1,15 @@ +#!/bin/sh + +set -e + +DATE=`date +%F` + +cd /scratch/oe/oe-build/openembedded +git fetch +git checkout testing-next +git merge origin/master +git push oe-push HEAD +git branch tested_${DATE} + +echo "master has been merged to testing-next and is ready for clean builds" | mail -s "testing branch ${DATE}" openembedded-devel@lists.openembedded.org -- -r "cliff.brake@gmail.com" +