Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Williams2013-03-28 22:51:17 +0000
committerDavid Williams2013-03-28 22:51:17 +0000
commitca65906eb78a93e395c93f555b2efd3179dd24ab (patch)
tree0ac259c123be2f7839f736cad2bfc72ef782b695 /production/gather-parts.sh
parent6fe2820f750cbe8ccceeacb0cca7ad82a77c3eaa (diff)
downloadeclipse.platform.releng.aggregator-ca65906eb78a93e395c93f555b2efd3179dd24ab.tar.gz
eclipse.platform.releng.aggregator-ca65906eb78a93e395c93f555b2efd3179dd24ab.tar.xz
eclipse.platform.releng.aggregator-ca65906eb78a93e395c93f555b2efd3179dd24ab.zip
Bug 404593 - misc. minor improvements in production scripts (cleanup of
unused variables and commented out codes)
Diffstat (limited to 'production/gather-parts.sh')
-rw-r--r--production/gather-parts.sh12
1 files changed, 0 insertions, 12 deletions
diff --git a/production/gather-parts.sh b/production/gather-parts.sh
index 0b2688ab4..454ddf49c 100644
--- a/production/gather-parts.sh
+++ b/production/gather-parts.sh
@@ -12,22 +12,17 @@ if [ ! -r "$1" ]; then
exit 1
fi
-pushd $( dirname $0 ) >/dev/null
SCRIPT_PATH=${SCRIPT_PATH:-$(pwd)}
-popd >/dev/null
source $SCRIPT_PATH/build-functions.sh
source "$1"
-
cd $BUILD_ROOT
# derived values
gitCache=$( fn-git-cache "$BUILD_ROOT" "$BRANCH" )
aggDir=$( fn-git-dir "$gitCache" "$AGGREGATOR_REPO" )
-repositories=$( echo $STREAMS_PATH/repositories.txt )
-
if [ -z "$BUILD_ID" ]; then
BUILD_ID=$(fn-build-id "$BUILD_TYPE" )
@@ -40,17 +35,10 @@ fn-checkout-basebuilder "$basebuilderDir" "$BASEBUILDER_TAG"
launcherJar=$( fn-basebuilder-launcher "$basebuilderDir" )
-
-#fn-gather-repo "$BUILD_ID" "$aggDir" "$buildDirectory"
-
fn-gather-sdk "$BUILD_ID" "$aggDir" "$buildDirectory"
fn-gather-platform "$BUILD_ID" "$aggDir" "$buildDirectory"
fn-gather-swt-zips "$BUILD_ID" "$aggDir" "$buildDirectory"
fn-gather-test-zips "$BUILD_ID" "$aggDir" "$buildDirectory"
fn-gather-ecj-jars "$BUILD_ID" "$aggDir" "$buildDirectory"
-
fn-slice-repos "$BUILD_ID" "$aggDir" "$buildDirectory" "$launcherJar"
-#fn-gather-repo-zips "$BUILD_ID" "$aggDir" "$buildDirectory"
-#fn-gather-compile-logs "$BUILD_ID" "$aggDir" "$buildDirectory"
-#fn-gather-main-index "$BUILD_ID" "$aggDir" "$buildDirectory" "$STREAM" "$BUILD_TYPE" "$BUILD_PRETTY_DATE"

Back to the top