Skip to content
This repository has been archived by the owner on Nov 5, 2024. It is now read-only.

Commit

Permalink
Fix CI crashing #1: reduce RAM usage
Browse files Browse the repository at this point in the history
  • Loading branch information
ILIYANGERMANOV committed Sep 18, 2022
1 parent eda85e0 commit 52c2e0a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:

# RUN: Lint
- name: Lint (Debug)
run: ./gradlew lintDebug --no-daemon
run: ./gradlew lintDebug

- name: Upload Lint report to GitHub (see artificats)
if: always()
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ android.enableJetifier=true
# Kotlin code style for this project: "official" or "obsolete":
kotlin.code.style=official
# Speed-up Gradle Builds! (OPTIMIZATION)
org.gradle.jvmargs=-Xmx19g -XX:MaxMetaspaceSize=800m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 -XX:+UseParallelGC
kotlin.daemon.jvmargs=-Xmx11g -XX:MaxMetaspaceSize=700m -XX:+UseParallelGC
org.gradle.jvmargs=-Xmx4g -XX:MaxMetaspaceSize=800m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 -XX:+UseParallelGC
kotlin.daemon.jvmargs=-Xmx4g -XX:MaxMetaspaceSize=700m -XX:+UseParallelGC
org.gradle.configureondemand=true
org.gradle.parallel=true
org.gradle.workers.max=8
Expand Down

0 comments on commit 52c2e0a

Please sign in to comment.