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
[HaskellPlanner] enable shell and build for Stack framework (#155)
## Summary
This PR enables **basic** Haskell support using the Stack framework.
Both `devbox shell` and `devbox build` should work.
Limitations:
- haskell (ghc) version: We currently support the latest versions of
haskell. Have not implemented
parsing `stack.yaml` or `package.yaml` or `<project-name>.cabal` for the
haskell
version and installing just that.
- image size: The Runtime docker image is quite large (2 GB). I added a
comment
inline on a way to possibly reduce this size, but haven't fully verified
it will
work in all circumstances.
## How was it tested?
Added a basic hello world example using `stack new hello-world`
generated code.
did:
- `devbox shell` and then `stack exec hello-world-exe
- `devbox build` -> ran with `docker run devbox`
0 commit comments