Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 2ed9c7e985e784a45706706ed1f3e2ad3825048d (plain) (blame)
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
#--------------------------------------------------------------------------------
# Copyright (c) 2012-2014 CEA LIST.
#
#    
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is available at
# http://www.eclipse.org/legal/epl-v10.html
#
# Contributors:
#    Nicolas Bros (Mia-Software)
#	 Camille Letavernier (CEA LIST)
#--------------------------------------------------------------------------------

########## publishing ##########

##
## Known variables:
## BUILD_ID=2014-10-01_05-16-17
##
## For stable builds:
## BUILD_ALIAS=M4
##

p2UpdateSiteDir=${WORKSPACE}/source/releng/toolsmiths/site/target/repository
updateSite=${WORKSPACE}/repository

if [ -n "$BUILD_ALIAS" ]; then
  buildType=S
else
  buildType=N
fi

COMPACT_BUILD_ID="$BUILD_TIMESTAMP"
FULL_BUILD_ID=${buildType}${COMPACT_BUILD_ID}

if [ -n "$BUILD_ALIAS" ]; then
  updateZipName=Papyrus-Toolsmiths-${BUILD_ALIAS}.zip
else
  updateZipName=Papyrus-Toolsmiths-${FULL_BUILD_ID}.zip
fi
zipName="Papyrus-Toolsmiths.zip"

rm -rf tmp
#mkdir -p "tmp/$FULL_BUILD_ID"
mkdir -p "tmp/toolsmiths"

rm -rf $updateSite
mv $p2UpdateSiteDir $updateSite

# create the update site zip
(cd $updateSite && zip -r $updateZipName *)
#mv $updateSite/$updateZipName "tmp/$FULL_BUILD_ID"
mv $updateSite/$updateZipName "tmp/toolsmiths"

(cd tmp && zip -r $zipName *)
mv tmp/$zipName .

Back to the top