-
Notifications
You must be signed in to change notification settings - Fork 323
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ensoup
broken due to 2024.5.1.rc3
#11794
Comments
I guess, to stabilize things |
The Well we could set JAVA_HOME to the selected JVM and then run the
I'm also worried that the change was actually done in such a way that newer |
There are changes related to #10121:
Not if the
I am not sure what exactly would it be breaking? Anyway, the direction for the future is clear: |
Ok, I see. With all the arguments above, I'm convinced to change the execution scheme. Let's just ensure we do it in a compatible way this time. |
The latest stable version of
ensoup
is broken, @radeusgd. To reproduce:$ wget https://github.com/enso-org/enso/releases/download/2024.4.2/enso-launcher-2024.4.2-linux-amd64.tar.gz $ tar fxvz enso-launcher-2024.4.2-linux-amd64.tar.gz $ ./enso/bin/ensoup install engine $ ./enso/bin/ensoup run Dec01 Error: Could not find or load main class org.enso.EngineRunnerBootLoader in module org.enso.runtime
technically this problem is caused by incompatibility introduced by
which has changed the runner entrypoint.
However the biggest problem is that
ensoup
2024.4.2
downloads2024.5.1-rc3
$ ./enso/bin/ensoup list Enso 2024.5.1-rc3 -> GraalVM 24.0.0-java21.0.2
Either there has to be a way to
ensoup
(even already released one like2024.4.2
) it is no longer compatible with some future releaseensoup
shouldn't be adventurous and download unknown latest version (given current state of (in)compatibility of Enso development)ensoup
only download stable releases - why does it download2024.5.1-rc3
at all?ensoup
andenso
stable - e.g. don't change the main classI discovered this problem while investigating use of
ensoup
inside of Enso VSCode Extension to download Enso engine for users that have a Enso file or project, but don't have anything to invoke it.The text was updated successfully, but these errors were encountered: