gen_merge_report.sh: Make ARTIFACT_PATH/INFO_PATH/JSON_PATH conditional

Depending on whether it's ArmCI or OpenCI, as the two systems use different
code coverage artifact paths.

Signed-off-by: Paul Sokolovsky <paul.sokolovsky@linaro.org>
Change-Id: I324a03a9fb0d12a5cf34696501308756ee7b97f8
diff --git a/script/gen_merge_report.sh b/script/gen_merge_report.sh
index 392c67f..35158d1 100644
--- a/script/gen_merge_report.sh
+++ b/script/gen_merge_report.sh
@@ -8,9 +8,17 @@
 REPORT_JSON=$1
 REPORT_HTML=$2
 TEST_DEF_FOLDER="${WORKSPACE}/test-definitions"
+
+if echo "$JENKINS_URL" | grep -q "arm.com"; then
 ARTIFACT_PATH='artifact/html'
 INFO_PATH='lcov_report/coverage.info'
 JSON_PATH='output_file.json'
+else
+ARTIFACT_PATH='artifact'
+INFO_PATH='trace_report/coverage.info'
+JSON_PATH='config_file.json'
+fi
+
 BRANCH_FOLDER="scripts/tools/code_coverage/fastmodel_baremetal/bmcov/report/branch_coverage"
 BMCOV_REPORT_FOLDER="$OUTDIR/$TEST_DEF_FOLDER/scripts/tools/code_coverage/fastmodel_baremetal/bmcov/report"