You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by zh...@apache.org on 2021/10/22 13:58:38 UTC

[hbase] branch branch-2.4 updated: HBASE-26382 Use gen_redirect_html for linking flaky test logs (#3780)

This is an automated email from the ASF dual-hosted git repository.

zhangduo pushed a commit to branch branch-2.4
in repository https://gitbox.apache.org/repos/asf/hbase.git


The following commit(s) were added to refs/heads/branch-2.4 by this push:
     new d483e10  HBASE-26382 Use gen_redirect_html for linking flaky test logs (#3780)
d483e10 is described below

commit d483e105c8b9b2174c5f3bd73545b76630119bef
Author: Duo Zhang <zh...@apache.org>
AuthorDate: Fri Oct 22 21:43:58 2021 +0800

    HBASE-26382 Use gen_redirect_html for linking flaky test logs (#3780)
    
    Signed-off-by: Xin Sun <dd...@gmail.com>
---
 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 594000e..1c058ad 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/*'
     }
   }
 }