aboutsummaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
authorCliff Brake <cbrake@bec-systems.com>2011-02-04 09:37:24 -0500
committerCliff Brake <cbrake@bec-systems.com>2011-02-04 09:38:20 -0500
commitdb60254c965392e21ba5438b1530cb7049574dfa (patch)
treedb76af2877472f320dc97d05422091e6b516f3d8 /contrib
parentf06b04c2b517e57783f794b09843f614f58f1c90 (diff)
downloadopenembedded-db60254c965392e21ba5438b1530cb7049574dfa.tar.gz
update-testing-branch.sh: script to do the weekly testing branch update
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/testing/update-testing-branch.sh15
1 files changed, 15 insertions, 0 deletions
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"
+