blob: 81a570d7775f8610fd7e52c1f200c19a1e8b30bf (
plain)
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
|
#! /bin/bash
artifacts=$1
shift
if [ -z "$artifacts" ] ; then
echo Usage $0 artifacts file
exit 1
fi
branch=rc
tag_old=v2.0-rc1
tag=v2.0-rc2
sdir=`dirname $0`
thisdir=`pwd`
. $sdir/funcs_git.sh
for i in gluegen joal joal-demos jogl jogl-demos jocl jocl-demos ; do
sha=`grep $i.build.commit $artifacts | awk --field-separator "=" ' { print $2 } ' `
echo $i sha $sha
cd $i
git checkout $branch
git pull jogamp $branch
git tag -u 0x8ED60127 -m "Signed Candidate $i $tag $sha" $tag $sha
git-new-milestone $i $tag_old $tag
cd $thisdir
echo done $i
echo
done
|