-
Notifications
You must be signed in to change notification settings - Fork 72
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
Does haskell-ci support package.yaml? #248
Comments
We don't really support .cabal file preprocessors as those wouldn't be supported by cabal either (and it's unlikely cabal will have support for it any time soon due to the engineering cost of doing this correctly as it's very tricky getting this right as well as avoiding significant performance/latency penalties; instead we're focusing on improving the So I'd think you'd already run into problems with cabal if you don't have already a means to materialize the |
The reason we use hpack is that we have a large (and frequently changing) set of datafiles that we want to come with the library. At least some time ago wildcards weren't supported for data files in .cabal files. |
Ah, I see that from cabal 2.4, this is supported. |
yes, I was gonna point out https://cabal.readthedocs.io/en/latest/file-format-changelog.html#cabal-version-2-4 :-) |
thanks |
In our project, we use hpack to generate a .cabal file from our package.yaml file. I would love to use haskell-ci to generate a .travis-ci file. In the documentation I see no clues on how to do that. Is this supported?
The text was updated successfully, but these errors were encountered: