https://kotlinlang.org logo
Title
s

sam

01/29/2023, 12:58 PM
What do we think about making a 5.6 cut that targets kotlin 1.8 ?
e

Emil Kantis

01/29/2023, 2:56 PM
Sounds good 🙂 haven't had any issues with 1.8 so far
I think there's a bit of work to do to fix native and JS targets, and I guess moving Kotlin version ahead forces us to deal with that? I tried to dig into why Kotest 5.5.5, Gradle 7.6 and Kotlin 1.7+ is not playing well together. I think that JB has changed the gradle plugin at some point from doing a single Mocha invocation to doing multiple ones (perhaps to run suites in parallel?). The way Kotest for JS works causes our tests to run on the first invocation which kotlin-test is now using for discovery, so there's no teamcity reporter attached and the failure results in an exception (I guess the Gradle task doesn't expect failures on first invocation)
i

Imran/Malic

03/10/2023, 9:28 AM
I am not able to build kotest master right now. it failes with the same errors like in our branch https://github.com/kotest/kotest/pull/3403
is there a specific way we have to build the main branch . In my case this file in kotest-framework for jsMain wont compile at all
I am working on a 1.7.21 upgrade for now
e

Emil Kantis

03/15/2023, 9:31 PM
Think I found the culprit... Not sure why it was changed. It snuck in with a change that mostly related to docs otherwise 😕
I've reverted it on master. If you pull that in I think it'll help @Imran/Malic
i

Imran/Malic

03/16/2023, 8:08 AM
Wow haha
thanks !