-
Notifications
You must be signed in to change notification settings - Fork 27
DownloadGraalTask generates incorrect download url causing FileNotFoundException #337
Comments
+1 on the above. |
A minor (albeit, hacky) workaround for this is to manually download graal, move it into the correct directory and rename the files, so when running the (I'm runnig on a Mac, so the windows instructions will be slightly different)
(For newer macbooks / OS, you may get a security restriction which will prevent gu from running, in this case run
(note the name change during the copy)
Unfortunately, you have to use What you're doing is pretty much mocking what the download & extract tasks do. |
Should be fixed by #255? |
The following configuration works for me.
The default |
it seems the graalvm binary file naming and url are changed. when I configure the project with the following configuration:
on mac, it generates the following url:
https://github.com/graalvm/graalvm-ce-builds/releases/download/vm-20.0.0/graalvm-ce-darwin-amd64-20.0.0.tar.gz
the correct url is:
https://github.com/graalvm/graalvm-ce-builds/releases/download/vm-20.0.0/graalvm-ce-java11-darwin-amd64-20.0.0.tar.gz
so, there is "-java11" tag in the file name. I checked DownloadGraalTask.java, the FILENAME_PATTERN should need one more variable to determine java8 or java11.
The text was updated successfully, but these errors were encountered: