#!/bin/bash LOG_FILE="../merge.log" build_host="ka2" build_dir="/scratch/sfr/next" build_cmd="bin/build_next" today="$(date '+%Y%m%d')" no_build=false [ "$NEXT_BUILD_HOST" ] && build_host="$NEXT_BUILD_HOST" [ "$NEXT_BUILD_DIR" ] && build_host="$NEXT_BUILD_DIR" [ "$1" = "-n" ] && { shift no_build=true } [ -n "$1" ] && { build_host="$1" shift } [ -n "$1" ] && { build_dir="$1" shift } log() { echo "$@" | tee -a $LOG_FILE } execute() { log "$" $@ $@ 2>&1 | tee -a $LOG_FILE return ${PIPESTATUS[0]} } cpwd=../next execute git clone -s -l -n -q . ../rebase-tmp || { echo Clone failed 1>&2 bash -i || exit } log '$' cd ../rebase-tmp cd ../rebase-tmp execute git fetch --no-tags $cpwd refs/heads/quilt/akpm:akpm || { echo Fetch of top failed 1>&2 bash -i || exit } execute git fetch --no-tags $cpwd refs/heads/quilt/akpm-base:akpm-base || { echo Fetch of base failed 1>&2 bash -i || exit } execute git checkout akpm || { echo Checkout of top failed 1>&2 bash -i || exit } execute git rebase --onto master akpm-base || { echo Rebase failed 1>&2 bash -i || exit } echo "fix up? use git rebase -i --onto master akpm-base" bash -i log '$' cd $cpwd cd $cpwd execute git fetch -f ../rebase-tmp akpm:akpm || { echo Pull failed 1>&2 bash -i || exit } execute rm -rf ../rebase-tmp git update-ref "refs/next/$today/akpm" akpm git update-ref refs/heads/akpm-end HEAD git update-ref refs/heads/quilt/akpm refs/heads/akpm git update-ref refs/heads/quilt/akpm-base refs/heads/akpm-end log Merging akpm '('$(git log -1 --oneline akpm)')' execute git merge --no-ff akpm || { echo Merge failed 1>&2 bash -i || exit } [ -f "../merge-fixes/akpm" ] && { for p in $(cat "../merge-fixes/akpm"); do ../tools/merge_fix -n "$p" || { bash -i || exit } done } [ -x "../pre-build/akpm" ] && { "../pre-build/akpm" || bash -i || exit } $no_build && exit 0 git push -f "$build_host":"$build_dir" master:refs/heads/next || { echo git push failed 1>&2 bash -i || exit } ssh "$build_host" "$build_cmd" || { echo Build failed 1>&2 bash -i || exit } exit 0