Re: Hope someone can help me understand something about the gradle build system

2022-10-09 Thread Dawid Weiss
> I just made a second test task and used the gradle code from the test task > as building blocks. This isn't something that is built into the "standard" gradle though and if you're building upon their internal APIs they do change quite frequently - I found it quite a burden to keep custom-code o

Re: New branch and feature freeze for Solr 9.1.0

2022-10-09 Thread Ishan Chattopadhyaya
https://issues.apache.org/jira/browse/SOLR-16453?jql=project%20%3D%20SOLR%20AND%20(fixVersion%20%3D%209.1)%20AND%20priority%20%3D%20Blocker%20AND%20resolution%20%3D%20Unresolved On Mon, Oct 10, 2022 at 11:10 AM Ishan Chattopadhyaya < ichattopadhy...@gmail.com> wrote: > There were lots of Blocker

Re: New branch and feature freeze for Solr 9.1.0

2022-10-09 Thread Ishan Chattopadhyaya
There were lots of Blocker issues with affectsVersion as 9.1. I assume the intention was to have them be available in 9.1? I've changed them to fixVersion = 9.1 (blocker). On Fri, Oct 7, 2022 at 5:17 PM Christine Poerschke (BLOOMBERG/ LONDON) < cpoersc...@bloomberg.net> wrote: > Thanks! Merging a

Outreachy

2022-10-09 Thread David Smiley
Hey everyone, I am registered as an ASF mentor for Outreachy (kinda like GSOC). I submitted a project proposal for SOLR-11872[1]. Thankfully, I'm seeing that a number of intern candidates are interested! Candidates must contribute to the project in some small way by November 4th, after which I

Re: Hope someone can help me understand something about the gradle build system

2022-10-09 Thread Mark Miller
I wrote one a year or two ago. It’s a little tricky here and there, but not too bad. I just made a second test task and used the gradle code from the test task as building blocks. You just need a little strategy for how to keep the jvms full. You could probably steal the old ant builds strategy.

Re: Hope someone can help me understand something about the gradle build system

2022-10-09 Thread Dawid Weiss
Here's the bit to take a look at, if you're curious as to how gradle assigns/ works with tests internally. https://github.com/gradle/gradle/blob/437194ef1fb08786ad1487031b55b79785d5aad5/subprojects/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/DefaultTestExecuter.java#L

Re: Hope someone can help me understand something about the gradle build system

2022-10-09 Thread Dawid Weiss
You'd need to rewrite the default test task in gradle, Shawn. This is a known issue I mentioned here: https://markmail.org/message/vjpfc2jwocroz7nd Essentially, test assignment and scheduling is all gradle-internal APIs. I gave up on trying to improve this after my few other issues reported to gr