aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Williams <christianw@google.com>2017-10-30 18:18:47 -0700
committerChristian Williams <christianw@google.com>2017-10-30 18:58:29 -0700
commit79dc2dd671092b4e2ec282f43af3be6cd1ccc909 (patch)
tree33cc0864beaa106efd7edb3a5b87e7a6703981ac
parent46ec1aac265930bf6d6abaec5898f555ea01f63a (diff)
downloadrobolectric-shadows-79dc2dd671092b4e2ec282f43af3be6cd1ccc909.tar.gz
Reduce test parallelism, log .cache-hash.
-rw-r--r--circle.yml6
1 files changed, 4 insertions, 2 deletions
diff --git a/circle.yml b/circle.yml
index 7c801888e..cbf9006fa 100644
--- a/circle.yml
+++ b/circle.yml
@@ -7,12 +7,14 @@ jobs:
resource_class: large
environment:
JVM_OPTS: -Xmx3172m
- GRADLE_MAX_PARALLEL_FORKS: 3
+ GRADLE_MAX_PARALLEL_FORKS: 2
steps:
- checkout
- run:
name: Calculate Cache Hash
- command: find . \( -name \*.gradle -or -name \*.groovy -or -name \*.sh -or -name \*.rb -or -name circle.yml \) -exec shasum {} \; > .cache-hash
+ command: |
+ find . \( -name \*.gradle -or -name \*.groovy -or -name \*.sh -or -name \*.rb -or -name circle.yml \) -exec shasum {} \; > .cache-hash
+ cat .cache-hash
- run:
name: Install Maven
command: sudo apt-get update; sudo apt-get install maven