@@ -71,6 +71,22 @@ function copy_artifacts {
71
71
fi
72
72
}
73
73
74
+ #
75
+ # function to strip off opengeosuite- prefix from artifacts.
76
+ # strip_opengeosuite <artifact>, <artifact>, ...
77
+ #
78
+ function strip_opengeosuite {
79
+ # copy the dashboard artifacts into place
80
+ pushd $dist
81
+ for a in $* ; do
82
+ for f in ` ls opengeosuite-* -${a} -* .zip` ; do
83
+ f2=$( echo $f | sed ' s/opengeosuite-//g' | eval " sed s/-${a} //g" | eval sed " s/^/${a} -/g" )
84
+ mv $f $f2
85
+ done
86
+ done
87
+ popd
88
+ }
89
+
74
90
set -x
75
91
76
92
[ " $ARCHIVE " = " true" ] && DIST_PATH=" archived" || DIST_PATH=" latest"
@@ -81,7 +97,7 @@ if [ ! -e $dist ]; then
81
97
fi
82
98
echo " dist: $dist "
83
99
84
- artifacts=" bin win mac ext war war-geoserver war-geoexplorer war-geoeditor war-geowebcache war-geoserver-jboss doc analytics control-flow importer readme dashboard-win32 dashboard-lin32 dashboard-lin64 dashboard-osx"
100
+ artifacts=" bin win mac ext war war-geoserver war-geoexplorer war-geoeditor war-geowebcache war-geoserver-jboss doc analytics control-flow importer readme dashboard-win32 dashboard-lin32 dashboard-lin64 dashboard-osx pgadmin-postgis data-dir "
85
101
86
102
# set up the maven repository for this particular branch/tag/etc...
87
103
MVN_SETTINGS_TEMPLATE=` pwd` /repo/build/settings.xml
@@ -135,13 +151,7 @@ copy_artifacts
135
151
copy_artifacts ee
136
152
# copy_artifacts cloud
137
153
138
- # copy the dashboard artifacts into place
139
- pushd $dist
140
- for f in ` ls opengeosuite-* -dashboard-* .zip` ; do
141
- f2=$( echo $f | sed ' s/opengeosuite-//g' | sed ' s/-dashboard//g' | sed ' s/^/dashboard-/g' )
142
- mv $f $f2
143
- done
144
- popd
154
+ strip_opengeosuite dashboard-win32 dashboard-lin32 dashboard-lin64 dashboard-osx pgadmin-postgis data-dir
145
155
146
156
# clear out old artifacts
147
157
pushd $dist
152
162
for x in win32 lin32 lin64 osx; do
153
163
ls -t | grep " dashboard-.*-$x .zip" | tail -n +7 | xargs rm -f
154
164
done
165
+ for x in pgadmin-postgis data-dir; do
166
+ ls -t | grep " $x .zip" | tail -n +2 | xargs rm -f
167
+ done
155
168
popd
156
169
157
170
# start_remote_job <url> <name> <profile>
0 commit comments