Skip to content

Commit

Permalink
jenkins fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tanmayja committed Sep 19, 2023
1 parent 18241ba commit 08f66e8
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,14 @@ pipeline {
checkout([
$class: 'GitSCM',
branches: scm.branches,
extensions: scm.extensions + [[$class: 'CleanBeforeCheckout']],
userRemoteConfigs: scm.userRemoteConfigs
extensions: scm.extensions + [[$class: 'CleanBeforeCheckout']] +
[[$class: 'SubmoduleOption',
disableSubmodules: false,
parentCredentials: false,
recursiveSubmodules: true,
reference: '',
trackingSubmodules: false]],
userRemoteConfigs: scm.userRemoteConfig,
])
}
}
Expand Down

0 comments on commit 08f66e8

Please sign in to comment.