Skip to content

Commit

Permalink
Merge pull request #4 from csmith/master
Browse files Browse the repository at this point in the history
Run gradle in parallel mode.
  • Loading branch information
greboid committed Sep 23, 2014
2 parents 99f77e3 + bb0d6d8 commit 3981c24
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Expand Up @@ -125,8 +125,8 @@ subprojects {

allprojects {
configurations.all {
resolutionStrategy.cacheDynamicVersionsFor 0, 'seconds'
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
resolutionStrategy.cacheDynamicVersionsFor 2, 'minutes'
resolutionStrategy.cacheChangingModulesFor 2, 'minutes'
}
}

Expand Down
4 changes: 2 additions & 2 deletions circle.yml
Expand Up @@ -11,8 +11,8 @@ checkout:

dependencies:
override:
- ./gradlew assemble
- ./gradlew --parallel assemble

test:
override:
- ./gradlew --stacktrace test
- ./gradlew --stacktrace --parallel test

0 comments on commit 3981c24

Please sign in to comment.