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:55:15 UTC

[hbase] branch branch-1 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-1
in repository https://gitbox.apache.org/repos/asf/hbase.git


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

commit bcb2829144b92aa642bed989f98252206780c0a8
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 e59eef2..1363a5b 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/*'
     }
   }
 }