Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Williams2016-12-06 19:06:52 +0000
committerDavid Williams2016-12-06 19:06:52 +0000
commit5bc591dc64dd8bb570651e4be9a5fe6ec9e97161 (patch)
treee1e6b29035192b76443d58e5ff070a45617d32fc
parente4e464bfe45a887ddcb023d254239b49c3dcd9ae (diff)
downloadeclipse.platform.releng.aggregator-5bc591dc64dd8bb570651e4be9a5fe6ec9e97161.tar.gz
eclipse.platform.releng.aggregator-5bc591dc64dd8bb570651e4be9a5fe6ec9e97161.tar.xz
eclipse.platform.releng.aggregator-5bc591dc64dd8bb570651e4be9a5fe6ec9e97161.zip
Bug 508780 - Repository Reports missing in recent builds
Change-Id: I996c048dbe4f0e361b0e13398f255bf9b03cee91 Signed-off-by: David Williams <david_williams@acm.org>
-rwxr-xr-xproduction/createReports.sh7
1 files changed, 5 insertions, 2 deletions
diff --git a/production/createReports.sh b/production/createReports.sh
index e1b09fbc9..b46be4568 100755
--- a/production/createReports.sh
+++ b/production/createReports.sh
@@ -132,7 +132,10 @@ then
# just in case does not exist yet
mkdir -p ${output_dir}
- tar_name=org.eclipse.cbi.p2repo.analyzers.product-linux.gtk.x86_64.tar.gz
+ # This analyzersBuildId can (currently) be found by "drilling down" at
+ # http://download.eclipse.org/cbi/updates/analyzers/4.6/
+ analyzersBuildId=I20161201-1633
+ tar_name=org.eclipse.cbi.p2repo.analyzers.product_${analyzersBuildId}_linux.gtk.x86_64.tar.gz
report_app_area="${app_area}/reportApplication"
@@ -154,7 +157,7 @@ then
# --no-verbose -quiet
#if [[ ! -F ${TMP_DIR}/${tar_name} ]]
#then
- wget --no-proxy --no-cache -O "${TMP_DIR}/${tar_name}" https://hudson.eclipse.org/cbi/job/cbi.p2repo.analyzers.build/lastSuccessfulBuild/artifact/output/products/${tar_name} 2>&1
+ wget --no-proxy --no-cache -O "${TMP_DIR}/${tar_name}" http://download.eclipse.org/cbi/updates/analyzers/4.6/${analyzersBuildId}/${tar_name} 2>&1
#else
# echo "${TMP_DIR}/${tar_name} already existed, not re-fetched"
#fi

Back to the top