Hi

I have created a simple pipeline job that is intended just to check out a 
working copy from svn initially.

Here's the script:

node {
   echo 'Hello World'
   
   stage('Checkout') {
      checkout([$class: 'SubversionSCM', 
          additionalCredentials: [], 
          excludedCommitMessages: '', 
          excludedRegions: '', 
          excludedRevprop: '', 
          excludedUsers: 'buildbot', 
          filterChangelog: false, 
          ignoreDirPropChanges: false, 
          includedRegions: '', 
          locations: [[credentialsId: 'b86bc2b6-994b-4811-ac98-0f35e9a9b114', 
                               depthOption: 'infinity', 
                               ignoreExternalsOption: true, 
                               local: '.', 
                               remote: "<snip>"]],
          workspaceUpdater: [$class: 'UpdateUpdater']])
  }    
}

Is the script valid?

How do I determine the 'credentialsId' ?   (I have credentials set up in 
non-pipeline jobs already).

Best regards

David

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/5943d500c05d413fae0d0dd9f5d4dbc0%40EUX13SRV1.EU.NEC.COM.
For more options, visit https://groups.google.com/d/optout.

Reply via email to