From db60254c965392e21ba5438b1530cb7049574dfa Mon Sep 17 00:00:00 2001 From: Cliff Brake Date: Fri, 4 Feb 2011 09:37:24 -0500 Subject: [PATCH] update-testing-branch.sh: script to do the weekly testing branch update --- contrib/testing/update-testing-branch.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 contrib/testing/update-testing-branch.sh 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" + -- 2.39.5