Skip to content
This repository was archived by the owner on Mar 11, 2022. It is now read-only.

Commit 4e55c63

Browse files
authored
Merge pull request #592 from cloudant/506-remove-clean-workaround
Removed clean checkout workaround
2 parents 5f3f2c1 + 5ec4917 commit 4e55c63

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

Jenkinsfile

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,7 @@ def runTests(testEnv, isAndroid) {
4949
stage('Build') {
5050
// Checkout, build and assemble the source and doc
5151
node {
52-
checkout([
53-
$class : 'GitSCM',
54-
branches : scm.branches,
55-
doGenerateSubmoduleConfigurations: scm.doGenerateSubmoduleConfigurations,
56-
extensions : scm.extensions + [[$class: 'CleanBeforeCheckout']],
57-
userRemoteConfigs : scm.userRemoteConfigs
58-
])
52+
checkout scm
5953
sh './gradlew clean assemble'
6054
stash name: 'built'
6155
}

0 commit comments

Comments
 (0)