Skip to content

Commit 2bd602b

Browse files
committed
making some additional artifacts available to avoid having to checkout in linux package scripts
1 parent d0dc1cd commit 2bd602b

File tree

4 files changed

+48
-8
lines changed

4 files changed

+48
-8
lines changed

assembly/data-dir.xml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<assembly>
2+
<id>data-dir</id>
3+
<formats>
4+
<format>zip</format>
5+
</formats>
6+
<baseDirectory></baseDirectory>
7+
<fileSets>
8+
<fileSet>
9+
<directory>data_dir</directory>
10+
</fileSet>
11+
</fileSets>
12+
</assembly>

assembly/pgadmin-postgis.xml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<assembly>
2+
<id>pgadmin-postgis</id>
3+
<formats>
4+
<format>zip</format>
5+
</formats>
6+
<baseDirectory></baseDirectory>
7+
<fileSets>
8+
<fileSet>
9+
<outputDirectory>/</outputDirectory>
10+
<directory>installer/common/postgis/</directory>
11+
</fileSet>
12+
</fileSets>
13+
</assembly>

build/main/suite/build.sh

+21-8
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,22 @@ function copy_artifacts {
7171
fi
7272
}
7373

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+
7490
set -x
7591

7692
[ "$ARCHIVE" = "true" ] && DIST_PATH="archived" || DIST_PATH="latest"
@@ -81,7 +97,7 @@ if [ ! -e $dist ]; then
8197
fi
8298
echo "dist: $dist"
8399

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"
85101

86102
# set up the maven repository for this particular branch/tag/etc...
87103
MVN_SETTINGS_TEMPLATE=`pwd`/repo/build/settings.xml
@@ -135,13 +151,7 @@ copy_artifacts
135151
copy_artifacts ee
136152
#copy_artifacts cloud
137153

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
145155

146156
# clear out old artifacts
147157
pushd $dist
@@ -152,6 +162,9 @@ done
152162
for x in win32 lin32 lin64 osx; do
153163
ls -t | grep "dashboard-.*-$x.zip" | tail -n +7 | xargs rm -f
154164
done
165+
for x in pgadmin-postgis data-dir; do
166+
ls -t | grep "$x.zip" | tail -n +2 | xargs rm -f
167+
done
155168
popd
156169

157170
# start_remote_job <url> <name> <profile>

pom.xml

+2
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,8 @@
127127
<descriptor>assembly/dashboard-lin32.xml</descriptor>
128128
<descriptor>assembly/dashboard-lin64.xml</descriptor>
129129
<descriptor>assembly/dashboard-osx.xml</descriptor>
130+
<descriptor>assembly/data-dir.xml</descriptor>
131+
<descriptor>assembly/pgadmin-postgis.xml</descriptor>
130132
</descriptors>
131133
</configuration>
132134
</plugin>

0 commit comments

Comments
 (0)