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 2020/10/19 08:49:42 UTC

[hbase] branch HBASE-25194 updated: fix dir

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

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


The following commit(s) were added to refs/heads/HBASE-25194 by this push:
     new 182279e  fix dir
182279e is described below

commit 182279e676e5bc573271b24d35bf59387075de2d
Author: Duo Zhang <zh...@apache.org>
AuthorDate: Mon Oct 19 16:49:16 2020 +0800

    fix dir
---
 dev-support/flaky-tests/flaky-reporting.Jenkinsfile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-support/flaky-tests/flaky-reporting.Jenkinsfile b/dev-support/flaky-tests/flaky-reporting.Jenkinsfile
index cbd41b5..bb9423f 100644
--- a/dev-support/flaky-tests/flaky-reporting.Jenkinsfile
+++ b/dev-support/flaky-tests/flaky-reporting.Jenkinsfile
@@ -55,13 +55,13 @@ pipeline {
   post {
     always {
       // Has to be relative to WORKSPACE.
-      archiveArtifacts artifacts: "${OUTPUT_DIR_RELATIVE_REPORT}/includes,${OUTPUT_DIR_RELATIVE_REPORT}/excludes,${OUTPUT_DIR_RELATIVE_REPORT}/dashboard.html"
+      archiveArtifacts artifacts: "${env.OUTPUT_DIR_RELATIVE_REPORT}/*"
       publishHTML target: [
         allowMissing: true,
         keepAll: true,
         alwaysLinkToLastBuild: true,
         // Has to be relative to WORKSPACE
-        reportDir: ${OUTPUT_DIR_RELATIVE_REPORT},
+        reportDir: ${env.OUTPUT_DIR_RELATIVE_REPORT},
         reportFiles: 'dashboard.html',
         reportName: 'Flaky Test Report'
       ]