Skip to content

Commit 35dbbf0

Browse files
author
Marcel Schnelle
authored
Update to Gradle 4.10 (#112)
1 parent 90eb8dd commit 35dbbf0

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.circleci/config.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -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

99
cache_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:
@@ -62,7 +62,7 @@ jobs:
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
@@ -73,7 +73,7 @@ jobs:
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
@@ -84,7 +84,7 @@ jobs:
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

8989
workflows:
9090
version: 2

gradle/wrapper/gradle-wrapper.jar

1.8 KB
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-4.9-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)