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/adbdbc87
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/adbdbc87
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/adbdbc87

Branch: refs/heads/branch-1.4
Commit: adbdbc87f6ec681f9720fbebca02a7a2cbbd8901
Parents: 36f5e60
Author: Sean Busbey <bus...@apache.org>
Authored: Sun Aug 6 14:46:56 2017 -0500
Committer: Andrew Purtell <apurt...@apache.org>
Committed: Tue Aug 8 16:00:38 2017 -0700

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


http://git-wip-us.apache.org/repos/asf/hbase/blob/adbdbc87/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()
-    }
-  }
 }

Reply via email to