-
Notifications
You must be signed in to change notification settings - Fork 493
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
NO AUTO Renames core to common package, makes core and full depend on it #3079
Conversation
431f030
to
9117335
Compare
9117335
to
18d0afb
Compare
566ab31
to
401cecd
Compare
0628b55
to
07d2189
Compare
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.
Really nice work so far. I had a couple of small suggestions.
I also have a question regarding the core tests. It seems like those tests are currently not run, or at least I couldn't find any evidence that they were. Do you think that is indeed the case?
common/build.gradle
Outdated
minHeapSize = '128m' | ||
} | ||
} | ||
} |
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.
Do you think we could remove this completely in the 3 common/core/processor build.gradle files?
I'm not sure the tests are particularly parallelizable unfortunately, even when run locally.
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've removed it, so let's see, but I'm not a fan of introducing unnecessary changes in PRs and this was pre-existing and if it makes the CI fail I will undo.
They are running, but they contain only docker tests which are ignored (unfortunately at the moment) |
4f0f9b9
to
37e0ce0
Compare
37e0ce0
to
acb1adb
Compare
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.
Great job 🎉
What
Renames core to common, creates a new core package and makes core and full depend on common.
Why
This is a step towards splitting core and full completely. Next step should move procedures from common to core, increasingly.
Next
core
? At the moment it's left incommon
core->test
depends oncommon->test
. Should we remove that in the future?full
.