Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | WIP on getting projects to build with Cabal 2.0/GHC 8.2 | Alan Zimmerman | 2018-01-18 | 1 | -0/+1 |
| | |||||
* | Add a test which brings up a GHC session | Daniel Gröber | 2018-01-18 | 1 | -1/+1 |
| | |||||
* | compile-test: Add GHC 8.2.2 to Cabal version table | Daniel Gröber | 2017-12-02 | 1 | -1/+6 |
| | |||||
* | Fix windows build using unix-compat | Vladislav Shtepin | 2017-11-07 | 1 | -2/+1 |
| | |||||
* | Fix compilation-test for GHC 7.4 | Daniel Gröber | 2017-09-26 | 1 | -1/+1 |
| | |||||
* | tests: Handle errors when installing Cabal and continue | Daniel Gröber | 2017-09-25 | 1 | -3/+10 |
| | |||||
* | tests: Use showVersion for 'Version' type | Daniel Gröber | 2017-09-25 | 1 | -2/+3 |
| | |||||
* | tests: Bump Cabal bound to 2.0 for 8.2 | Daniel Gröber | 2017-09-25 | 1 | -1/+1 |
| | |||||
* | Add support for running Cabal's Setup.hs directly | Daniel Gröber | 2017-09-25 | 1 | -22/+8 |
| | | | | | | | | cabal-install 1.24 broke installing older Cabal versions which use build-type:custom. See https://github.com/haskell/cabal/pull/4787. This still breaks with HEAD on GHC<8. See https://github.com/haskell/cabal/pull/4786. | ||||
* | Remove 'Options' from shared Types module | Daniel Gröber | 2017-09-25 | 1 | -1/+1 |
| | | | | Only needed at compiletime, were being hidden everywhere else already. | ||||
* | tests: Remove reference to ./dist | Daniel Gröber | 2017-09-25 | 1 | -2/+2 |
| | | | | | The 'distdir' argument to 'compile' is only relevant for the Cabal source dir case. | ||||
* | tests: Remove cleaning of cache dir | Daniel Gröber | 2017-09-25 | 1 | -2/+0 |
| | | | | | .. mostly because the paths are wrong now but I also think keeping these dirty across the tests simulates the users environment better. | ||||
* | tests: Remove testing of library -- only compile | Daniel Gröber | 2017-09-25 | 1 | -3/+0 |
| | |||||
* | Remove 'extra' dependency | Daniel Gröber | 2017-09-19 | 1 | -1/+1 |
| | | | | ..constrains dependency versions too much and just causes failures. | ||||
* | Fix literally everything :) | Daniel Gröber | 2017-09-18 | 1 | -0/+155 |
Sorry for the megacommit - Seperate modules into: - Compiletime, modules which are only used while building the package - Runtime, modues included in the wrapper binary to be compiled on the users machine at runtime - Shared, modues used in both contexts - Refactor runtime compilation - Completely revamp output paths - Don't chdir when invoking ghc - Require cabal-version 1.14 in cabal file |