Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Williams2013-04-22 03:01:35 +0000
committerDavid Williams2013-04-22 03:01:35 +0000
commitff3f6684854ece605454f1208811c9a179494618 (patch)
tree647c59f0452ad5162863369736f2e62c5e9f0f81 /production/master-build.sh
parent17271b8a9d49584ac8edb0eaa8a1d18f8418be91 (diff)
downloadeclipse.platform.releng.aggregator-ff3f6684854ece605454f1208811c9a179494618.tar.gz
eclipse.platform.releng.aggregator-ff3f6684854ece605454f1208811c9a179494618.tar.xz
eclipse.platform.releng.aggregator-ff3f6684854ece605454f1208811c9a179494618.zip
Bug 402448 - [CBI] Run traditional mirror/comparator to catch corner
cases (prep changes)
Diffstat (limited to 'production/master-build.sh')
-rw-r--r--production/master-build.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/production/master-build.sh b/production/master-build.sh
index 74a628052..ab84bf6da 100644
--- a/production/master-build.sh
+++ b/production/master-build.sh
@@ -88,6 +88,12 @@ elif [ "$BUILD_TYPE" = S ]; then
BUILD_TYPE_NAME="Stable (Milestone)"
fi
+# we need this value for later, post build processing, so want it saved to variables file.
+# We can either compute here,
+# or just make sure it matches that is in parent pom for various streams (e.g. 4.3 vs 4.4)
+# and build types, (e.g. M vs. I). For N builds, we still use "I".
+comparatorRepository=http://download.eclipse.org/eclipse/updates/4.3-I-builds
+
GET_AGGREGATOR_BUILD_LOG="${logsDirectory}/mb010_get-aggregator_output.txt"
TAG_BUILD_INPUT_LOG="${logsDirectory}/mb030_tag_build_input_output.txt"
POM_VERSION_UPDATE_BUILD_LOG="${logsDirectory}/mb050_pom-version-updater_output.txt"
@@ -140,6 +146,8 @@ fn-write-property BUILD_ID
fn-write-property BUILD_PRETTY_DATE
fn-write-property BUILD_TYPE_NAME
fn-write-property TRACE_OUTPUT
+fn-write-property comparatorRepository
+fn-wirte-property logsDirectory
echo "# Build ${BUILD_ID}, ${BUILD_PRETTY_DATE}" > ${buildDirectory}/directory.txt

Back to the top