@@ -4,7 +4,7 @@ defaults: &defaults
44 docker :
55 - image : circleci/android:api-28-alpha
66 environment :
7- GRADLE_OPTS : ' -Dorg.gradle.daemon=true -Dorg.gradle. jvmargs="-Xmx4g -XX:+HeapDumpOnOutOfMemoryError"'
7+ GRADLE_OPTS : ' -Dorg.gradle.jvmargs="-Xmx4g -XX:+HeapDumpOnOutOfMemoryError"'
88
99cache_key : &cache_key
1010 key : jars-{{ checksum "build.gradle" }}-{{ checksum "android-junit5/build.gradle" }}-{{ checksum "android-junit5-tests/build.gradle" }}-{{ checksum "instrumentation/build.gradle" }}-{{ checksum "instrumentation-runner/build.gradle" }}-{{ checksum "sample/build.gradle" }}-{{ checksum "gradle.properties" }}-{{ checksum "gradle/wrapper/gradle-wrapper.properties" }}
@@ -19,21 +19,21 @@ jobs:
1919 << : *cache_key
2020 - run :
2121 name : Download Dependencies
22- command : ./gradlew androidDependencies
22+ command : ./gradlew androidDependencies --no-daemon
2323
2424 - run :
2525 name : Build Plugin
26- command : ./gradlew :android-junit5:assemble --stacktrace
26+ command : ./gradlew :android-junit5:assemble --stacktrace --no-daemon
2727 - run :
2828 name : Test Plugin
29- command : ./gradlew :android-junit5-tests:check --stacktrace
29+ command : ./gradlew :android-junit5-tests:check --stacktrace --no-daemon
3030
3131 - run :
3232 name : Build Instrumentation
33- command : ./gradlew :instrumentation:assemble :instrumentation-runner:assemble --stacktrace
33+ command : ./gradlew :instrumentation:assemble :instrumentation-runner:assemble --stacktrace --no-daemon
3434 - run :
3535 name : Test Instrumentation
36- command : ./gradlew :instrumentation:check :instrumentation-runner:check --stacktrace
36+ command : ./gradlew :instrumentation:check :instrumentation-runner:check --stacktrace --no-daemon
3737 - save_cache :
3838 << : *cache_key
3939 paths :
6262 << : *cache_key
6363 - run :
6464 name : Deploy SNAPSHOTs
65- command : ./gradlew publishLibraryPublicationToSnapshotRepository --stacktrace
65+ command : ./gradlew publishLibraryPublicationToSnapshotRepository --stacktrace --no-daemon
6666
6767# deploy_plugin_release:
6868# <<: *defaults
7373# <<: *cache_key
7474# - run:
7575# name: Deploy plugin
76- # command: ./gradlew generatePomFileForLibraryPublication publish :android-junit5:bintrayUpload --stacktrace
76+ # command: ./gradlew generatePomFileForLibraryPublication publish :android-junit5:bintrayUpload --stacktrace --no-daemon
7777#
7878# deploy_instrumentation_release:
7979# <<: *defaults
8484# <<: *cache_key
8585# - run:
8686# name: Deploy instrumentation
87- # command: ./gradlew generatePomFileForLibraryPublication publish :instrumentation:bintrayUpload :instrumentation-runner:bintrayUpload --stacktrace
87+ # command: ./gradlew generatePomFileForLibraryPublication publish :instrumentation:bintrayUpload :instrumentation-runner:bintrayUpload --stacktrace --no-daemon
8888
8989workflows :
9090 version : 2
0 commit comments