forked from jenkinsci/jenkins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
update-since-todo.sh
executable file
·35 lines (27 loc) · 1.09 KB
/
update-since-todo.sh
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
#!/bin/bash
# This script is a developer tool, to be used by maintainers
# to update '@since TODO' entries with actual Jenkins release versions.
set -o errexit
set -o nounset
set -o pipefail
me="$( basename "$0" )"
IFS=$'\n'
for todo in $( git grep --line-number '@since TODO' | grep -v "$me" )
do
#echo "TODO: $todo"
file=$( echo "$todo" | cut -d : -f 1 )
line=$( echo "$todo" | cut -d : -f 2 )
echo "Analyzing $file:$line"
lineSha=$( git blame --porcelain -L "$line,$line" "$file" | head -1 | cut -d ' ' -f 1 )
echo -e "\tfirst sha: $lineSha"
firstTag=$( git tag --sort=creatordate --contains "$lineSha" 'jenkins-*' | head -1 )
if [[ -n $firstTag ]]; then
echo -e "\tfirst tag was $firstTag"
echo -e "\tUpdating file in place"
sedExpr="${line}s/@since TODO/@since ${firstTag//jenkins-/}/"
sed -i.bak "$sedExpr" "$file"
rm -f "$file.bak"
else
echo -e "\tNot updating file, no tag found. Normal if the associated PR/commit is not merged and released yet; otherwise make sure to fetch tags from jenkinsci/jenkins"
fi
done