-
Notifications
You must be signed in to change notification settings - Fork 408
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
Update KGP to 1.8.20 #2989
Merged
Merged
Update KGP to 1.8.20 #2989
Conversation
This file contains 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
vmishenev
force-pushed
the
update-kgp-1.8.20
branch
2 times, most recently
from
May 1, 2023 20:34
8548f18
to
665f71d
Compare
vmishenev
force-pushed
the
update-kgp-1.8.20
branch
6 times, most recently
from
May 4, 2023 19:11
44fcaff
to
bac97d8
Compare
vmishenev
force-pushed
the
update-kgp-1.8.20
branch
5 times, most recently
from
May 5, 2023 13:32
554e695
to
e0d6f7a
Compare
vmishenev
force-pushed
the
update-kgp-1.8.20
branch
2 times, most recently
from
May 8, 2023 14:00
3345075
to
168d4e8
Compare
vmishenev
force-pushed
the
update-kgp-1.8.20
branch
from
May 8, 2023 14:47
168d4e8
to
0b957c0
Compare
vmishenev
commented
May 8, 2023
runners/gradle-plugin/src/main/kotlin/org/jetbrains/dokka/gradle/kotlin/kotlinClasspathUtils.kt
Show resolved
Hide resolved
...e-plugin/src/main/kotlin/org/jetbrains/dokka/gradle/GradleDokkaSourceSetBuilderExtensions.kt
Show resolved
Hide resolved
runners/gradle-plugin/src/main/kotlin/org/jetbrains/dokka/gradle/kotlin/kotlinClasspathUtils.kt
Show resolved
Hide resolved
...ers/gradle-plugin/src/test/kotlin/org/jetbrains/dokka/gradle/AndroidAutoConfigurationTest.kt
Outdated
Show resolved
Hide resolved
Dokka suppresses source sets that do no have compilation since such configuration is invalid, it reports a warning or an error
plugins/base/src/main/kotlin/transformers/documentables/utils.kt
Outdated
Show resolved
Hide resolved
IgnatBeresnev
approved these changes
May 17, 2023
I triggered thorough tests manually, but for some reason GitHub is not reporting them as pending / in progress for this PR Let's wait for these to pass before the merge: https://github.com/Kotlin/dokka/actions/runs/5004525443 |
They are triggered only for
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
KGP 1.8.20 have increased memory consumption in Dokka project a little (10-20%), It causes memory exhaustion of free GitHub runners in GitHub Actions. (publishing coroutines
##[debug]Node Action run completed with exit code 143
and the unit tests on WindowsNative memory allocation (malloc) failed to allocate
). The--no-daemon
flag does not help anymore in Windows.So stricter memory constraints have been applied to GH actions.
It is based on #2972