-
Notifications
You must be signed in to change notification settings - Fork 9.3k
Dependency bumps #8611
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Dependency bumps #8611
Changes from 12 commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
d33e4c7
Dependency bumps
yschimke 24fe24c
Fix build
yschimke 61b1e37
Output the failures in logging
yschimke fb4395b
Output the failures in logging
yschimke 2ae197c
Testing logging failures
yschimke 8321e5a
Testing logging failures
yschimke 81864e3
Testing logging failures
yschimke 0e5a5e6
Testing logging failures
yschimke 65a10fa
Testing logging failures
yschimke dd05248
Revert bnd bump
yschimke 2f01501
bump memory back a bit
yschimke 289ff50
Update build.gradle.kts
yschimke d01abb1
Revert back some changes
yschimke File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,13 +1,28 @@ | ||
| org.gradle.caching=true | ||
| org.gradle.jvmargs='-Dfile.encoding=UTF-8' | ||
| org.gradle.parallel=true | ||
| android.enableJetifier=true | ||
| android.useAndroidX=true | ||
| kotlin.mpp.stability.nowarn=true | ||
| kotlin.js.compiler=ir | ||
| kotlin.incremental.js.ir=true | ||
| androidBuild=false | ||
| graalBuild=false | ||
| loomBuild=false | ||
| containerTests=false | ||
| android.experimental.lint.version=8.2.0 | ||
|
|
||
| # Specifies the JVM arguments used for the daemon process. | ||
| # The setting is particularly useful for tweaking memory settings. | ||
| # Ensure important default jvmargs aren't overwritten. See https://github.com/gradle/gradle/issues/19750 | ||
| # | ||
| # For more information about how Gradle memory options were chosen: | ||
| # - Metaspace See https://www.jasonpearson.dev/metaspace-in-jvm-builds/ | ||
| # - SoftRefLRUPolicyMSPerMB would default to 1000 which with a 4gb heap translates to ~51 minutes. | ||
| # A value of 1 means ~4 seconds before SoftRefs can be collected, which means its realistic to | ||
| # collect them as needed during a build that should take seconds to minutes. | ||
| # - CodeCache normally defaults to a very small size. Increasing it from platform defaults of 32-48m | ||
| # because of how many classes can be loaded into memory and then cached as native compiled code | ||
| # for a small speed boost. | ||
| org.gradle.jvmargs=-Dfile.encoding=UTF-8 -XX:+UseG1GC -XX:SoftRefLRUPolicyMSPerMB=1 -XX:ReservedCodeCacheSize=256m -XX:+HeapDumpOnOutOfMemoryError -Xmx2g -Xms2g | ||
yschimke marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| # For more information about how Kotlin Daemon memory options were chosen: | ||
| # - Kotlin JVM args only inherit Xmx, ReservedCodeCache, and MaxMetaspace. Since we are specifying | ||
| # other args we need to specify all of them here. | ||
| # - We're using the Kotlin Gradle Plugin's default value for ReservedCodeCacheSize, if we do not then | ||
| # the Gradle JVM arg value for ReservedCodeCacheSize will be used. | ||
| kotlin.daemon.jvmargs=-Dfile.encoding=UTF-8 -XX:+UseG1GC -XX:SoftRefLRUPolicyMSPerMB=1 -XX:ReservedCodeCacheSize=320m -XX:+HeapDumpOnOutOfMemoryError -Xmx2g -Xms2g | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.