You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by bu...@apache.org on 2017/08/07 16:26:57 UTC

[1/7] hbase git commit: HBASE-18527 Update nightly job to account for changes in jenkins plugins.

Repository: hbase
Updated Branches:
  refs/heads/HBASE-18527 [deleted] fa71e69eb
  refs/heads/branch-1 695b30318 -> 4279f0d2f
  refs/heads/branch-1.1 68fb6b960 -> b74576e2e
  refs/heads/branch-1.2 cd683e612 -> d630c8609
  refs/heads/branch-1.3 f30b624e1 -> 3f53089fc
  refs/heads/branch-1.4 fc09b07c0 -> cf2bd8d00
  refs/heads/branch-2 afd5866de -> 7029c23b0
  refs/heads/master fd76eb39d -> 7e7461e42


HBASE-18527 Update nightly job to account for changes in jenkins plugins.

 - Stop presuming job will be configured with checkout into a 'component' dir
 - Disable autocheckout
 - Specify checkout within 'component' dir
 - leave the workspace around on pipeline failure so we can browse it.


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/7e7461e4
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/7e7461e4
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/7e7461e4

Branch: refs/heads/master
Commit: 7e7461e42a8cbdb470d531276ad59df46e1fd4e1
Parents: fd76eb3
Author: Sean Busbey <bu...@apache.org>
Authored: Sun Aug 6 14:46:56 2017 -0500
Committer: Sean Busbey <bu...@apache.org>
Committed: Mon Aug 7 11:24:00 2017 -0500

----------------------------------------------------------------------
 dev-support/Jenkinsfile | 13 ++++++++-----
 1 file changed, 8 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/7e7461e4/dev-support/Jenkinsfile
----------------------------------------------------------------------
diff --git a/dev-support/Jenkinsfile b/dev-support/Jenkinsfile
index 94d8c3f..1f01a47 100644
--- a/dev-support/Jenkinsfile
+++ b/dev-support/Jenkinsfile
@@ -27,6 +27,7 @@ pipeline {
     buildDiscarder(logRotator(numToKeepStr: '30'))
     timeout (time: 6, unit: 'HOURS')
     timestamps()
+    skipDefaultCheckout()
   }
   environment {
     TOOLS = "${env.WORKSPACE}/tools"
@@ -59,6 +60,13 @@ pipeline {
     booleanParam(name: 'DEBUG', defaultValue: false, description: 'Produce a lot more meta-information.')
   }
   stages {
+    stage ('scm checkout') {
+      steps {
+        dir('component') {
+          checkout scm
+        }
+      }
+    }
     stage ('yetus install') {
       steps {
         sh  '''#!/usr/bin/env bash
@@ -298,9 +306,4 @@ END
       }
     }
   }
-  post {
-    failure {
-      deleteDir()
-    }
-  }
 }


[7/7] hbase git commit: HBASE-18527 Update nightly job to account for changes in jenkins plugins.

Posted by bu...@apache.org.
HBASE-18527 Update nightly job to account for changes in jenkins plugins.

 - Stop presuming job will be configured with checkout into a 'component' dir
 - Disable autocheckout
 - Specify checkout within 'component' dir
 - leave the workspace around on pipeline failure so we can browse it.


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/b74576e2
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/b74576e2
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/b74576e2

Branch: refs/heads/branch-1.1
Commit: b74576e2e48df74ab8dfd82ec48e9124f3b10988
Parents: 68fb6b9
Author: Sean Busbey <bu...@apache.org>
Authored: Sun Aug 6 14:46:56 2017 -0500
Committer: Sean Busbey <bu...@apache.org>
Committed: Mon Aug 7 11:25:40 2017 -0500

----------------------------------------------------------------------
 dev-support/Jenkinsfile | 13 ++++++++-----
 1 file changed, 8 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/b74576e2/dev-support/Jenkinsfile
----------------------------------------------------------------------
diff --git a/dev-support/Jenkinsfile b/dev-support/Jenkinsfile
index cdb62b9..93648a1 100644
--- a/dev-support/Jenkinsfile
+++ b/dev-support/Jenkinsfile
@@ -27,6 +27,7 @@ pipeline {
     buildDiscarder(logRotator(numToKeepStr: '30'))
     timeout (time: 6, unit: 'HOURS')
     timestamps()
+    skipDefaultCheckout()
   }
   environment {
     TOOLS = "${env.WORKSPACE}/tools"
@@ -59,6 +60,13 @@ pipeline {
     booleanParam(name: 'DEBUG', defaultValue: false, description: 'Produce a lot more meta-information.')
   }
   stages {
+    stage ('scm checkout') {
+      steps {
+        dir('component') {
+          checkout scm
+        }
+      }
+    }
     stage ('yetus install') {
       steps {
         sh  '''#!/usr/bin/env bash
@@ -298,9 +306,4 @@ END
       }
     }
   }
-  post {
-    failure {
-      deleteDir()
-    }
-  }
 }


[4/7] hbase git commit: HBASE-18527 Update nightly job to account for changes in jenkins plugins.

Posted by bu...@apache.org.
HBASE-18527 Update nightly job to account for changes in jenkins plugins.

 - Stop presuming job will be configured with checkout into a 'component' dir
 - Disable autocheckout
 - Specify checkout within 'component' dir
 - leave the workspace around on pipeline failure so we can browse it.


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/cf2bd8d0
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/cf2bd8d0
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/cf2bd8d0

Branch: refs/heads/branch-1.4
Commit: cf2bd8d00bd51f3ca94aedc343bc77461767ccc3
Parents: fc09b07
Author: Sean Busbey <bu...@apache.org>
Authored: Sun Aug 6 14:46:56 2017 -0500
Committer: Sean Busbey <bu...@apache.org>
Committed: Mon Aug 7 11:25:26 2017 -0500

----------------------------------------------------------------------
 dev-support/Jenkinsfile | 13 ++++++++-----
 1 file changed, 8 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/cf2bd8d0/dev-support/Jenkinsfile
----------------------------------------------------------------------
diff --git a/dev-support/Jenkinsfile b/dev-support/Jenkinsfile
index cdb62b9..93648a1 100644
--- a/dev-support/Jenkinsfile
+++ b/dev-support/Jenkinsfile
@@ -27,6 +27,7 @@ pipeline {
     buildDiscarder(logRotator(numToKeepStr: '30'))
     timeout (time: 6, unit: 'HOURS')
     timestamps()
+    skipDefaultCheckout()
   }
   environment {
     TOOLS = "${env.WORKSPACE}/tools"
@@ -59,6 +60,13 @@ pipeline {
     booleanParam(name: 'DEBUG', defaultValue: false, description: 'Produce a lot more meta-information.')
   }
   stages {
+    stage ('scm checkout') {
+      steps {
+        dir('component') {
+          checkout scm
+        }
+      }
+    }
     stage ('yetus install') {
       steps {
         sh  '''#!/usr/bin/env bash
@@ -298,9 +306,4 @@ END
       }
     }
   }
-  post {
-    failure {
-      deleteDir()
-    }
-  }
 }


[3/7] hbase git commit: HBASE-18527 Update nightly job to account for changes in jenkins plugins.

Posted by bu...@apache.org.
HBASE-18527 Update nightly job to account for changes in jenkins plugins.

 - Stop presuming job will be configured with checkout into a 'component' dir
 - Disable autocheckout
 - Specify checkout within 'component' dir
 - leave the workspace around on pipeline failure so we can browse it.


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/4279f0d2
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/4279f0d2
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/4279f0d2

Branch: refs/heads/branch-1
Commit: 4279f0d2f0c40f60ddf69420ac54a6a5c2ed7406
Parents: 695b303
Author: Sean Busbey <bu...@apache.org>
Authored: Sun Aug 6 14:46:56 2017 -0500
Committer: Sean Busbey <bu...@apache.org>
Committed: Mon Aug 7 11:25:19 2017 -0500

----------------------------------------------------------------------
 dev-support/Jenkinsfile | 13 ++++++++-----
 1 file changed, 8 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/4279f0d2/dev-support/Jenkinsfile
----------------------------------------------------------------------
diff --git a/dev-support/Jenkinsfile b/dev-support/Jenkinsfile
index cdb62b9..93648a1 100644
--- a/dev-support/Jenkinsfile
+++ b/dev-support/Jenkinsfile
@@ -27,6 +27,7 @@ pipeline {
     buildDiscarder(logRotator(numToKeepStr: '30'))
     timeout (time: 6, unit: 'HOURS')
     timestamps()
+    skipDefaultCheckout()
   }
   environment {
     TOOLS = "${env.WORKSPACE}/tools"
@@ -59,6 +60,13 @@ pipeline {
     booleanParam(name: 'DEBUG', defaultValue: false, description: 'Produce a lot more meta-information.')
   }
   stages {
+    stage ('scm checkout') {
+      steps {
+        dir('component') {
+          checkout scm
+        }
+      }
+    }
     stage ('yetus install') {
       steps {
         sh  '''#!/usr/bin/env bash
@@ -298,9 +306,4 @@ END
       }
     }
   }
-  post {
-    failure {
-      deleteDir()
-    }
-  }
 }


[2/7] hbase git commit: HBASE-18527 Update nightly job to account for changes in jenkins plugins.

Posted by bu...@apache.org.
HBASE-18527 Update nightly job to account for changes in jenkins plugins.

 - Stop presuming job will be configured with checkout into a 'component' dir
 - Disable autocheckout
 - Specify checkout within 'component' dir
 - leave the workspace around on pipeline failure so we can browse it.


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/7029c23b
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/7029c23b
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/7029c23b

Branch: refs/heads/branch-2
Commit: 7029c23b00eb09485042784dd7e4cb89ef67cdc4
Parents: afd5866
Author: Sean Busbey <bu...@apache.org>
Authored: Sun Aug 6 14:46:56 2017 -0500
Committer: Sean Busbey <bu...@apache.org>
Committed: Mon Aug 7 11:25:08 2017 -0500

----------------------------------------------------------------------
 dev-support/Jenkinsfile | 13 ++++++++-----
 1 file changed, 8 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/7029c23b/dev-support/Jenkinsfile
----------------------------------------------------------------------
diff --git a/dev-support/Jenkinsfile b/dev-support/Jenkinsfile
index 94d8c3f..1f01a47 100644
--- a/dev-support/Jenkinsfile
+++ b/dev-support/Jenkinsfile
@@ -27,6 +27,7 @@ pipeline {
     buildDiscarder(logRotator(numToKeepStr: '30'))
     timeout (time: 6, unit: 'HOURS')
     timestamps()
+    skipDefaultCheckout()
   }
   environment {
     TOOLS = "${env.WORKSPACE}/tools"
@@ -59,6 +60,13 @@ pipeline {
     booleanParam(name: 'DEBUG', defaultValue: false, description: 'Produce a lot more meta-information.')
   }
   stages {
+    stage ('scm checkout') {
+      steps {
+        dir('component') {
+          checkout scm
+        }
+      }
+    }
     stage ('yetus install') {
       steps {
         sh  '''#!/usr/bin/env bash
@@ -298,9 +306,4 @@ END
       }
     }
   }
-  post {
-    failure {
-      deleteDir()
-    }
-  }
 }


[6/7] hbase git commit: HBASE-18527 Update nightly job to account for changes in jenkins plugins.

Posted by bu...@apache.org.
HBASE-18527 Update nightly job to account for changes in jenkins plugins.

 - Stop presuming job will be configured with checkout into a 'component' dir
 - Disable autocheckout
 - Specify checkout within 'component' dir
 - leave the workspace around on pipeline failure so we can browse it.


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/d630c860
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/d630c860
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/d630c860

Branch: refs/heads/branch-1.2
Commit: d630c860947173acedaeb252df3be6a84a471744
Parents: cd683e6
Author: Sean Busbey <bu...@apache.org>
Authored: Sun Aug 6 14:46:56 2017 -0500
Committer: Sean Busbey <bu...@apache.org>
Committed: Mon Aug 7 11:25:35 2017 -0500

----------------------------------------------------------------------
 dev-support/Jenkinsfile | 13 ++++++++-----
 1 file changed, 8 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/d630c860/dev-support/Jenkinsfile
----------------------------------------------------------------------
diff --git a/dev-support/Jenkinsfile b/dev-support/Jenkinsfile
index cdb62b9..93648a1 100644
--- a/dev-support/Jenkinsfile
+++ b/dev-support/Jenkinsfile
@@ -27,6 +27,7 @@ pipeline {
     buildDiscarder(logRotator(numToKeepStr: '30'))
     timeout (time: 6, unit: 'HOURS')
     timestamps()
+    skipDefaultCheckout()
   }
   environment {
     TOOLS = "${env.WORKSPACE}/tools"
@@ -59,6 +60,13 @@ pipeline {
     booleanParam(name: 'DEBUG', defaultValue: false, description: 'Produce a lot more meta-information.')
   }
   stages {
+    stage ('scm checkout') {
+      steps {
+        dir('component') {
+          checkout scm
+        }
+      }
+    }
     stage ('yetus install') {
       steps {
         sh  '''#!/usr/bin/env bash
@@ -298,9 +306,4 @@ END
       }
     }
   }
-  post {
-    failure {
-      deleteDir()
-    }
-  }
 }


[5/7] hbase git commit: HBASE-18527 Update nightly job to account for changes in jenkins plugins.

Posted by bu...@apache.org.
HBASE-18527 Update nightly job to account for changes in jenkins plugins.

 - Stop presuming job will be configured with checkout into a 'component' dir
 - Disable autocheckout
 - Specify checkout within 'component' dir
 - leave the workspace around on pipeline failure so we can browse it.


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/3f53089f
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/3f53089f
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/3f53089f

Branch: refs/heads/branch-1.3
Commit: 3f53089fcf526a065adc94abc9878dd049cbcd9c
Parents: f30b624
Author: Sean Busbey <bu...@apache.org>
Authored: Sun Aug 6 14:46:56 2017 -0500
Committer: Sean Busbey <bu...@apache.org>
Committed: Mon Aug 7 11:25:30 2017 -0500

----------------------------------------------------------------------
 dev-support/Jenkinsfile | 13 ++++++++-----
 1 file changed, 8 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/3f53089f/dev-support/Jenkinsfile
----------------------------------------------------------------------
diff --git a/dev-support/Jenkinsfile b/dev-support/Jenkinsfile
index cdb62b9..93648a1 100644
--- a/dev-support/Jenkinsfile
+++ b/dev-support/Jenkinsfile
@@ -27,6 +27,7 @@ pipeline {
     buildDiscarder(logRotator(numToKeepStr: '30'))
     timeout (time: 6, unit: 'HOURS')
     timestamps()
+    skipDefaultCheckout()
   }
   environment {
     TOOLS = "${env.WORKSPACE}/tools"
@@ -59,6 +60,13 @@ pipeline {
     booleanParam(name: 'DEBUG', defaultValue: false, description: 'Produce a lot more meta-information.')
   }
   stages {
+    stage ('scm checkout') {
+      steps {
+        dir('component') {
+          checkout scm
+        }
+      }
+    }
     stage ('yetus install') {
       steps {
         sh  '''#!/usr/bin/env bash
@@ -298,9 +306,4 @@ END
       }
     }
   }
-  post {
-    failure {
-      deleteDir()
-    }
-  }
 }