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

Commit 5ec4917

Browse files
committed
Removed clean checkout workaround
The Jenkins issue was resolved and this is now specified in the multi-branch configuration.
1 parent 5f3f2c1 commit 5ec4917

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)