Conversation
- build against 2023.3 as recommended. 2023.3 (233) is the oldest supported version.
This should avoid that we hit the 10GB limit on GitHub. Also remove the plugin verifier cache, as it is not used anymore by the verifier plugin. The IDEs are now gradle dependencies and would be stored in the gradle cache.
|
👍 |
I'd like to keep the 2023.3 compatibility, if possible. I'm working for a customer who is unfortunately stuck for a while on 2023.3... |
I don't know exactly. It's a combination of priorities and effort. E.g. they need to find and verify the flags to prevent IntelliJ from calling home (which won't work in the corporate network anyway).
Thanks! |
This contains three changes:
@jborgers you changed this in ba4c03b - I assume by accident?
This is a follow up on New release 2.0.4 not available #221. Hopefully, the future releases run smoothly then.
Some background info on the caching problem: A similar problem is described in JetBrains/intellij-platform-plugin-template#462 . We could do the suggestion in the last comment and verify only against the earliest and latest release. But it would have the downside, that we might not see any incompatibilities. That's why I prefer to test the whole range.
The action gradle/action/setup-gradle does already much to reduce the cache sizes (see https://github.com/gradle/actions/blob/main/docs/setup-gradle.md#select-which-branches-should-write-to-the-cache ), e.g. caches are only written from the main/master (default) branch and not from pull requests. But pull requests can still benefit from the cache from the default branch.
Note: Verification currently fails due to #238.