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 09:00:12 UTC

[hbase] branch HBASE-25194 updated (182279e -> 5528145)

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

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


 discard 182279e  fix dir
     new 5528145  fix script

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (182279e)
            \
             N -- N -- N   refs/heads/HBASE-25194 (5528145)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 dev-support/flaky-tests/flaky-reporting.Jenkinsfile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)


[hbase] 01/01: fix script

Posted by zh...@apache.org.
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

commit 552814587b00de293648b0d7825dce7c8f0f9898
Author: Duo Zhang <zh...@apache.org>
AuthorDate: Mon Oct 19 16:59:43 2020 +0800

    fix script
---
 dev-support/flaky-tests/flaky-reporting.Jenkinsfile | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-support/flaky-tests/flaky-reporting.Jenkinsfile b/dev-support/flaky-tests/flaky-reporting.Jenkinsfile
index cbd41b5..61411bd 100644
--- a/dev-support/flaky-tests/flaky-reporting.Jenkinsfile
+++ b/dev-support/flaky-tests/flaky-reporting.Jenkinsfile
@@ -46,7 +46,7 @@ pipeline {
           flaky_args=("${flaky_args[@]}" --urls "${JENKINS_URL}/job/HBase/job/HBase%20Nightly/job/master" --is-yetus True --max-builds 10)
           flaky_args=("${flaky_args[@]}" --urls "${JENKINS_URL}/job/HBase/job/HBase-Flaky-Tests/job/master" --is-yetus False --max-builds 30)
           docker build -t hbase-dev-support dev-support
-          docker run --ulimit nproc=12500 -v "${WORKSPACE}":/hbase --workdir=/hbase hbase-dev-support \
+          docker run --ulimit nproc=12500 -v "${WORKSPACE}":/hbase -u `id -u`:`id -g` --workdir=/hbase hbase-dev-support \
             python dev-support/flaky-tests/report-flakies.py --mvn -v -o ${OUTPUT_DIR_RELATIVE_REPORT} "${flaky_args[@]}"
 '''
       }
@@ -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}/includes,${env.OUTPUT_DIR_RELATIVE_REPORT}/excludes,${env.OUTPUT_DIR_RELATIVE_REPORT}/dashboard.html"
       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'
       ]