From 1253121db2dfa7490eb0329b31bd141333440dd2 Mon Sep 17 00:00:00 2001 From: Duo Zhang Date: Fri, 22 Oct 2021 21:43:58 +0800 Subject: [PATCH] HBASE-26382 Use gen_redirect_html for linking flaky test logs (#3780) Signed-off-by: Xin Sun --- dev-support/flaky-tests/run-flaky-tests.Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-support/flaky-tests/run-flaky-tests.Jenkinsfile b/dev-support/flaky-tests/run-flaky-tests.Jenkinsfile index 594000e1146..1c058ad3314 100644 --- a/dev-support/flaky-tests/run-flaky-tests.Jenkinsfile +++ b/dev-support/flaky-tests/run-flaky-tests.Jenkinsfile @@ -85,9 +85,9 @@ pipeline { ) ]) sh '''#!/bin/bash -e - echo "${ASF_NIGHTLIES}/hbase/${JOB_NAME}/${BUILD_NUMBER}" > "test_logs.txt" + ./dev-support/gen_redirect_html.py "${ASF_NIGHTLIES}/hbase/${JOB_NAME}/${BUILD_NUMBER}" > test_logs.html ''' - archiveArtifacts artifacts: 'includes.txt,test_logs.txt,target/machine/*' + archiveArtifacts artifacts: 'includes.txt,test_logs.html,target/machine/*' } } }