blob: 7ad463880357c18f0838c49eac8903e2766eb28d (
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
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
|
#! /bin/bash
##
#
# Will end up with an aggregated folder, webstart enabled,
# but not pack200 compressed and not signed.
#
# promote-latest-builds.sh <branch-name> [secure]
#
##
branch=$1
shift
if [ ! -z "$1" ] ; then
option=$1
shift
fi
let secure=0
if [ "$option" == "secure" ] ; then
let secure=1
fi
sdir=`dirname $0`
thisdir=`pwd`
logfile=$thisdir/`basename $0 .sh`.log
. $sdir/funcs_promotion.sh
. $sdir/../deployment/funcs_jnlp_relocate.sh
archivedir=/srv/www/jogamp.org/deployment/archive/$branch
rootdir=/srv/www/jogamp.org/deployment/autobuilds/$branch
os_and_archs_minus_one="linux-i586 macosx-universal windows-amd64 windows-i586"
masterpick="linux-amd64"
os_and_archs="$masterpick linux-i586 macosx-universal windows-amd64 windows-i586"
dest=tmp-archive
cd $rootdir
function promote-latest-builds() {
echo
echo "Promotion of latest files"
echo
echo " branch: $branch"
echo " option: $option"
echo " secure: $secure"
echo
echo `date`
echo
prom_setup $rootdir $dest
gluegenslave=`prom_lslatest gluegen-b`
bgluegenslave=`prom_buildnumber_2 $gluegenslave`
gluegenmaster=`prom_lslatest gluegen-master-b`
bgluegenmaster=`prom_buildnumber_3 $gluegenmaster`
echo
echo GLUEGEN
echo
echo slave build $bgluegenslave - $gluegenslave
echo master build $bgluegenmaster - $gluegenmaster
echo
echo "gluegen.build.number=$bgluegenslave" >> $dest/aggregated.artifact.properties
prom_promote_files gluegen $gluegenslave $dest gluegen
cp -a $gluegenmaster/artifact.properties $dest/javadoc/gluegen-master.artifact.properties
cp -a $gluegenmaster/javadoc.zip $dest/gluegen-javadoc.zip
cd $dest/javadoc
echo "INFO: gluegen master gluegen-javadoc zip"
unzip -q ../gluegen-javadoc.zip
cd $rootdir
joglslave=`prom_lslatest jogl-b`
bjoglslave=`prom_buildnumber_2 $joglslave`
joglmaster=`prom_lslatest jogl-master-b`
bjoglmaster=`prom_buildnumber_3 $joglmaster`
echo
echo JOGL
echo
echo slave build $bjoglslave - $joglslave
echo master build $bjoglmaster - $joglmaster
echo
echo "jogl.build.number=$bjoglslave" >> $dest/aggregated.artifact.properties
prom_promote_files jogl $joglslave $dest nativewindow jogl newt
cp -a $joglmaster/artifact.properties $dest/javadoc/jogl-master.artifact.properties
cp -a $joglmaster/javadoc.zip $dest/jogl-javadoc.zip
cd $dest/javadoc
unzip -q ../jogl-javadoc.zip
cd $rootdir
jogldemosslave=`prom_lslatest jogl-demos-b`
bjogldemosslave=`prom_buildnumber_3 $jogldemosslave`
jogldemosmaster=`prom_lslatest jogl-demos-master-b`
bjogldemosmaster=`prom_buildnumber_4 $jogldemosmaster`
echo
echo JOGL DEMOS
echo
echo slave build $bjogldemosslave - $jogldemosslave
echo master build $bjogldemosmaster - $jogldemosmaster
echo
echo "jogl-demos.build.number=$bjogldemosslave" >> $dest/aggregated.artifact.properties
cp -a $jogldemosmaster/jogl-demos*.zip $dest/
cp -a $jogldemosmaster/artifact.properties $dest/jogl-demos-master.artifact.properties
cp -a $jogldemosslave/artifact.properties $dest/jogl-demos.artifact.properties
cd $dest
fname=`find . -name jogl-demos*.zip`
bname=`basename $fname .zip`
echo "INFO: unzip $fname -> $bname"
unzip -q $bname.zip
prom_verify_artifacts jogl-demos jogl-demos-master.artifact.properties $bname/artifact.properties
cp -a $bname/jar/*.jar .
cp -a $bname/jnlp-files/* ./jnlp-files/
cp -a $bname/www/* ./www/
cd $rootdir
#########################################################
####### FIXME : JOCL, adapt to the new archive structure
#########################################################
## joclslave=`prom_lslatest jocl-b`
## bjoclslave=`prom_buildnumber_2 $joclslave`
## joclmaster=`prom_lslatest jocl-master-b`
## bjoclmaster=`prom_buildnumber_3 $joclmaster`
## echo
## echo JOCL
## echo
## echo slave build $bjoclslave - $joclslave
## echo master build $bjoclmaster - $joclmaster
## echo
## echo "jocl.build.number=$bjoclslave" >> $dest/aggregated.artifact.properties
##
## #
## #prom_promote_files jocl $joglslave $dest jocl
## #
##
## cp -a $joclslave/jocl*jar $dest/
## cp -a $joclslave/artifact.properties $dest/jocl.artifact.properties
##
## cp -a $joclmaster/artifact.properties $dest/javadoc/jocl-master.artifact.properties
## mkdir $dest/javadoc/jocl
## cp -a $joclmaster/jocl-javadoc.zip $dest/
## cd $dest/javadoc/jocl
## echo "INFO: unzip jocl-javadoc zip"
## unzip -q ../../jocl-javadoc.zip
## cd $rootdir
##
## jocldemosslave=`prom_lslatest jocl-demos-b`
## bjocldemosslave=`prom_buildnumber_3 $jocldemosslave`
## echo
## echo JOCL DEMOS
## echo
## echo slave build $bjocldemosslave - $jocldemosslave
## echo
## echo "jocl-demos.build.number=$bjocldemosslave" >> $dest/aggregated.artifact.properties
##
## cp -a $jocldemosslave/jocl-demos*jar $dest/
## cp -a $jocldemosslave/artifact.properties $dest/jocl-demos.artifact.properties
##
#########################################################
## Integrity Check, Cleanup, aggregation.properties
#########################################################
prom_integrity_check $dest
prom_cleanup $dest
# uri=gluegen_$bgluegenslave-jogl_$bjoglslave-jocl_$bjoclslave
# url=http://jogamp.org/deployment/archive/gluegen_$bgluegenslave-jogl_$bjoglslave-jocl_$bjoclslave
# wsdir=$archivedir/gluegen_$bgluegenslave-jogl_$bjoglslave-jocl_$bjoclslave
uri=gluegen_$bgluegenslave-jogl_$bjoglslave
url=http://jogamp.org/deployment/archive/gluegen_$bgluegenslave-jogl_$bjoglslave
wsdir=$archivedir/gluegen_$bgluegenslave-jogl_$bjoglslave
rm -rf $wsdir
mv $dest $wsdir
cd $wsdir
echo
echo aggregation.properties
echo
#cat jocl-demos.artifact.properties jogl-demos.artifact.properties | sort -u > jocl-demos-jogl-demos.artifact.properties.sorted
#sort -u aggregated.artifact.properties > aggregated.artifact.properties.sorted
#diff -Nurbw aggregated.artifact.properties.sorted jocl-demos-jogl-demos.artifact.properties.sorted
cat jogl-demos.artifact.properties | sort -u > jogl-demos.artifact.properties.sorted
sort -u aggregated.artifact.properties > aggregated.artifact.properties.sorted
diff -Nurbw aggregated.artifact.properties.sorted jogl-demos.artifact.properties.sorted
copy_relocate_jnlps $url $wsdir
if [ $secure -ne 1 ] ; then
remove_security_tag_jnlps $wsdir
fi
echo
echo Aggregation folder $wsdir for URL $url
echo
cp -av $logfile $wsdir
}
promote-latest-builds 2>&1 | tee $logfile
|