-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgit-integration
executable file
·147 lines (127 loc) · 3.73 KB
/
git-integration
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
#!/bin/bash
# Runs tests on all commits of a branch independently of working dir
# Copyright (C) 2013 Jean-Noël AVILA
# Licensed under the terms of the GNU General Public License version 2 (only).
# See the file COPYING for details.
usage(){
cat <<EOF
usage : git integration [-m] [-c <cmd>] [-o <origin>]
-h shows this text
-m <branch> test the merge with <branch>
-c <cmd> override the integration test command with <cmd>
-o <origin> override the origin branches with <origin>
EOF
}
while getopts "t:c:hm:o:" opt; do
case $opt in
t)
tag="$OPTARG"
;;
c)
build_cmd="$OPTARG"
;;
h)
usage
exit 0
;;
m)
try_merge=1
merge_target="$OPTARG"
;;
o)
sequence_origin="$OPTARG"
;;
:)
echo "Option -$OPTARG requires an argument." >&2
usage
exit 1
;;
\?)
usage
exit 1
;;
esac
done
[ -n "$build_cmd" ] || build_cmd=$(git config integration.cmd)
if [ -z "$build_cmd" ]; then
echo "please define config integration.cmd as a full command to build and test the project"
exit 1;
fi
[ -n "$sequence_origin" ] || sequence_origin=$(git config integration.origin)
if [ -z "$sequence_origin" ]; then
echo "please define config integration.origin as a space separated list of unwanted branches"
exit 1;
fi
workinghead=$(git symbolic-ref HEAD 2> /dev/null | cut -b 12-)
PRIVATE_BUILD=$(git rev-parse --show-toplevel)/.privatebuild
if [ ! -d "$PRIVATE_BUILD" ]; then
git worktree add -f --detach "$PRIVATE_BUILD">/dev/null || exit 1
fi
cd "$PRIVATE_BUILD" || exit 1
git clean -df
already_passed() {
obdata=$t-$1
obhash=`echo $obdata | git hash-object --stdin`
git cat-file blob $obhash > /dev/null 2>/dev/null \
&& tput setaf 2 && echo "Already $commit_title" && tput sgr0
}
passed_on() {
obdata=$t-$1
echo $obdata | git hash-object -w --stdin > /dev/null
tput setaf 2
echo "Passed: $2"
tput sgr0
return 0
}
broke_on() {
echo "Broke on $1"
status=1
return 1
}
new_test() {
cd $(git rev-parse --show-toplevel)
tput setaf 2
echo "-----------------------------------------------------------------------------"
echo "Testing: $1 $3"
tput sgr0
(git reset --hard $4 > /dev/null 2>/dev/null) && git clean -df && eval "$2" && passed_on "$1" "$3" || broke_on "$3"
return $?
}
t=`echo "$build_cmd" | git hash-object --stdin`
status=0
if [ -n "$tag" ]
then
tree_ver=`git rev-parse "${tag}^{tree}"`
commit_title=$(git log --oneline -1 ${tag})
passed_on $tree_ver "$commit_title"
exit 0
fi
sequence_exclude=$(for s in $sequence_origin; do echo -n "^${s} "; done)
echo "Testing $build_cmd"
tput setaf 3
echo "on ${sequence_exclude} ${workinghead}"
tput sgr0
for v in $(git rev-list --reverse ${sequence_exclude} ${workinghead})
do
tree_ver=`git rev-parse "$v^{tree}"`
commit_title=$(git log --oneline -1 $v)
already_passed $tree_ver "[$tree_ver] $commit_title" || new_test $tree_ver "$build_cmd" "$commit_title" $v || break
done
if [ "2$try_merge" -eq 21 ]; then
echo "trying to merge"
git checkout --detach "$merge_target"
git merge --no-commit "$workinghead" || broke_on "merging $workinghead into $merge_target"
eval "$build_cmd" && passed_on "0" "merge" || broke_on "testing merge"
fi
if [ $status -eq 0 ]; then
tput bold;tput setaf 2
echo "Integration OK"
tput sgr0
else
tput bold; tput setaf 1
echo "Integration Failed!"
tput sgr0
exit $?
fi
cd - >/dev/null
git worktree remove -f .privatebuild