Skip to content

Commit

Permalink
Update Jenkinsfile.groovy
Browse files Browse the repository at this point in the history
 --no-configuration-cache
  • Loading branch information
marunjar committed Nov 1, 2023
1 parent 7fe5a29 commit 6f556b7
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Jenkinsfile.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,17 @@ pipeline {
step([$class: 'GitHubSetCommitStatusBuilder'])
withGradle {
sh './gradlew --version'
sh './gradlew clean --no-build-cache'
sh './gradlew clean --no-build-cache --no-configuration-cache'
}
}
}
stage('Build') {
steps {
withGradle {
sh './gradlew assembleGoogle --stacktrace --no-build-cache'
sh './gradlew bundleGoogle --stacktrace --no-build-cache'
sh './gradlew assembleFdroid --stacktrace --no-build-cache'
sh './gradlew bundleFdroid --stacktrace --no-build-cache'
sh './gradlew assembleGoogle --stacktrace --no-build-cache --no-configuration-cache'
sh './gradlew bundleGoogle --stacktrace --no-build-cache --no-configuration-cache'
sh './gradlew assembleFdroid --stacktrace --no-build-cache --no-configuration-cache'
sh './gradlew bundleFdroid --stacktrace --no-build-cache --no-configuration-cache'
}
}
}
Expand All @@ -46,8 +46,8 @@ pipeline {
stage('Analyze') {
steps {
withGradle {
sh './gradlew lintGoogleRelease --no-build-cache'
sh './gradlew lintFdroidRelease --no-build-cache'
sh './gradlew lintGoogleRelease --no-build-cache --no-configuration-cache'
sh './gradlew lintFdroidRelease --no-build-cache --no-configuration-cache'
}
}
}
Expand Down

0 comments on commit 6f556b7

Please sign in to comment.