GitHub build and test action

2022-10-28 Thread Paul King
Hi folks, I was thinking of splitting the build and test GitHub action into 2 - probably giving a suffix of "main" and "aux". Currently, we have java versions: [11, 12, 13, 14, 15, 16, 17, 18] and we run those tests on "push" and "pull_request". I was basically going to move 12 through 16 into t

Fix remainder operator for BigInteger (GROOVY-10800)

2022-10-28 Thread Paul King
Hi folks, As part of fixing GROOVY-10800, I was planning to make the behavior for the "%" operator for BigInteger be consistent with our other data types (and with Java). Basically, there is a distinction between "remainder" and "modulo" for negative numbers. For the expression "numerator op divi

Re: GitHub build and test action

2022-10-28 Thread Peter Burka
I don't think Groovy is obliged to support those already-out-of-support JDKs. I think the risk is quite low, and that this makes sense. /peter From: Paul King Sent: Friday, October 28, 2022 6:49 AM To: Groovy_Developers Subject: GitHub build and test action Hi