diff options
author | Harsh Shandilya <msfjarvis@gmail.com> | 2020-02-25 15:22:05 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-25 15:22:05 +0530 |
commit | bea3cd5457e331f04a9aeb5c99267f14908f5eaa (patch) | |
tree | ce86f35a1d5de1fc0e1d81f7945d47af256a59ac /.github/ci-gradle.properties | |
parent | 97ee48dd2527762b299c2460478afd9d22824a0d (diff) |
CI workflow improvements (#642)
* github: Only run debug tasks in PRs
* github: Remove nightly deploys
* github: Setup automatic debug branch deployment
* Tweak Gradle config in CI
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
Co-authored-by: Aditya Wasan <adityawasan55@gmail.com>
Diffstat (limited to '.github/ci-gradle.properties')
-rw-r--r-- | .github/ci-gradle.properties | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.github/ci-gradle.properties b/.github/ci-gradle.properties new file mode 100644 index 00000000..05300282 --- /dev/null +++ b/.github/ci-gradle.properties @@ -0,0 +1,6 @@ +org.gradle.daemon=true +org.gradle.configureondemand=true +android.enableBuildCache=true +org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 +org.gradle.caching=true +org.gradle.parallel=true |