diff options
author | Matt Kwong <matt-kwong@users.noreply.github.com> | 2017-10-17 12:37:43 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-17 12:37:43 -0700 |
commit | 8017eacf5e8a9b8efc7d9465e96686dc4288c742 (patch) | |
tree | b4e6806ba70de68a3e958d3bbfa86ce4e331695f | |
parent | 95b9a916149417d5a13c150d65318c75803f4c18 (diff) | |
parent | 1bbf36d8176d3665f5b9eed3f18433a54da2f1d4 (diff) |
Merge pull request #13042 from jtattermusch/fix_index_html
Point custom report to kokoro2
-rwxr-xr-x | tools/internal_ci/helper_scripts/gen_report_index.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/internal_ci/helper_scripts/gen_report_index.sh b/tools/internal_ci/helper_scripts/gen_report_index.sh index 0af89c331c..576ff67d54 100755 --- a/tools/internal_ci/helper_scripts/gen_report_index.sh +++ b/tools/internal_ci/helper_scripts/gen_report_index.sh @@ -26,7 +26,7 @@ mkdir -p reports echo '<html><head></head><body>' > reports/kokoro_index.html echo '<h1>'${KOKORO_JOB_NAME}', build '#${KOKORO_BUILD_NUMBER}'</h1>' >> reports/kokoro_index.html -echo '<h2><a href="https://kokoro.corp.google.com/job/'${KOKORO_JOB_PATH}'/'${KOKORO_BUILD_NUMBER}'/">Kokoro build dashboard (internal only)</a></h2>' >> reports/kokoro_index.html +echo '<h2><a href="https://kokoro2.corp.google.com/job/'${KOKORO_JOB_PATH}'/'${KOKORO_BUILD_NUMBER}'/">Kokoro build dashboard (internal only)</a></h2>' >> reports/kokoro_index.html echo '<h2><a href="https://sponge.corp.google.com/invocation?id='${KOKORO_BUILD_ID}'&searchFor=">Test result dashboard (internal only)</a></h2>' >> reports/kokoro_index.html echo '<h2><a href="test_report.html">HTML test report (Not available yet)</a></h2>' >> reports/kokoro_index.html echo '<h2><a href="test_log.txt">Test log (Not available yet)</a></h2>' >> reports/kokoro_index.html |