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.
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
build config: Use buildSrc convention plugins to configure the Dokka subprojects #2704
build config: Use buildSrc convention plugins to configure the Dokka subprojects #2704
Changes from all commits
3f77497
b591e34
16657a2
a8abe34
2dd31cf
58bc1c8
89a504f
7a1a430
968a123
63a7da4
766af55
770a27b
ae0f4e1
bba37c7
549c11c
9bfedff
54e68e3
a1cfab1
d2e05d0
572494c
ae95fed
616a093
2c25467
452f141
8693c58
c40cd18
4510cb9
34d21e8
88b7cc3
ebb3e3d
de9eff1
1711af3
75764f6
0264c73
4d8649d
712d79f
68895d0
33cb1d7
05c284e
932b343
a367a26
1949bda
e2a8edd
6603d55
e488262
de1250a
4ed2fc0
7a25d7f
e301770
d516114
f348661
6801a77
0b6a9db
7c49e09
27c639c
bccbdd7
7212695
f1dcf92
8fb0319
4024f36
ff45720
2e78b7b
1bbbd9b
d06036f
ac58931
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not opposed to bumping this, but I want to try and limit this PR as much as possible. I think it would be better to update in a separate PR.
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If we apply
toolchain
for all modules, they'll run tests on Java 8 instead of the JDK matrix on CI, we need to apply more toolchains inTest
which will slow down the build, I believe we should not usetoolchain
for now. Checkdokka/.github/workflows/gradle-test.pr.yml
Lines 12 to 13 in f5581c5
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch!
Toolchains can still help with this though, because it's possible to set them per-task. I did something similar for MockK - I'll put together a PR.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, I used it, but it's slow, without parallelism, check
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah right, yes that would be slower. I agree, using GitHub parallel workflows is best, not multiple Gradle tasks.