vaadin-framework/scripts/merge-check.sh
Leif Åstrand 7abb5e3397 Don't provide details to teamcity as it nowadays gets those from stdout
Change-Id: I2c1e80307efaa963313bf89284066bc0429e9cd8
2013-03-06 13:10:04 +02:00

37 rindas
834 B
Bash
Izpildāmais fails

#!/bin/bash
SINCE=$1
UNTIL=$2
if [ "$SINCE" = "" ] || [ "$UNTIL" = "" ]
then
echo "Usage: $0 <since> <until>"
exit 3
fi
testname="merge check for `pwd|sed "s/.*\///"`"
echo "##teamcity[testStarted name='$testname' captureStandardOutput='true']"
command="git --no-pager log --no-color $SINCE..$UNTIL"
# TODO Why do I get whitespace in the beginning of the wc output?
change_count=`$command --oneline|wc -l|tr -d ' '`
if [ "$change_count" = "0" ]
then
echo "No unmerged commits"
else
command="$command --format=short"
message="There are $change_count commits in $UNTIL that are missing from $SINCE"
echo $message
echo ""
$command
echo "##teamcity[testFailed name='$testname' message='$message']"
fi
echo "##teamcity[testFinished name='$testname']"
# Give non-ok exit status
if [ "$change_count" != "0" ]
then
exit 1
fi