aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/testing/update-testing-branch.sh
blob: 2c48af1257df93c40be1b71342c23a248ccf2529 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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"