You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the regular build as well as build on Continuous Integration (implemented using Github Actions) simply use the define version.kotlin dependency for everything.
But this won't help verifying whether build and tests would also work against other (older or newer) Kotlin core versions.
It seems like it is rather simple to override Kotlin dependency with
./mvnw -Dversion.kotlin=1.3.0 clean install test
(and so on).
So let's improve CI by adding alternate jobs or steps with different configurations.
The text was updated successfully, but these errors were encountered:
cowtowncoder
changed the title
Improve CI (Github Actions) to build against different Kotlin core versions
Improve CI (Github Actions) to build against different Kotlin core versions (1.4 - 1.7)
Oct 14, 2022
(note: follow up for #556)
Currently the regular build as well as build on Continuous Integration (implemented using Github Actions) simply use the define
version.kotlin
dependency for everything.But this won't help verifying whether build and tests would also work against other (older or newer) Kotlin core versions.
It seems like it is rather simple to override Kotlin dependency with
(and so on).
So let's improve CI by adding alternate jobs or steps with different configurations.
The text was updated successfully, but these errors were encountered: