-
Notifications
You must be signed in to change notification settings - Fork 47
Create release plan/script #43
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
Comments
Is this referring to a way to do migrations? |
This issue turns out to affect all platforms and we don't yet have an obviously best solution yet. User feedback would be appreciated. The ideal goal is to create a binary distribution in a zip-file which the user can download and run right away. Specifically, the issue is that cabal packages are not relocatable and cabal support for relocatable packages is limited, so bundling them into a directory structure alongside the binaries may be difficult. The Haskell packages are loaded in order to compile atom function bodies at runtime, which is a great feature. If the goal is to produce a platform-specific zip file with all the requisite libraries and binaries, then the options appear to be:
Clearly, none of these options are particularly appealing. Is there a better way? |
Which of these is the easiest? It seems (3) would be simplest, albeit not the most convenient. But having a solution is better than no solution and you can always improve after that. |
Right now, the feature dependencies are punted to the users. The various binaries include a One immediate improvement is to simply disable the scripting feature if the GHC libraries are not available- currently, the binaries spit out some warning. I will implement that. |
… the feature's dependencies are missing
The executables can now run with atom function scripting disabled if the GHC dependencies are missing. |
Uh oh!
There was an error while loading. Please reload this page.
Releases became more complicated since the addition of atom function scripting. The release should likely be a zip file which includes the precompiled binaries alongside a lib directory containing the requisite haskell library dependencies.
The text was updated successfully, but these errors were encountered: