-
Notifications
You must be signed in to change notification settings - Fork 214
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
improve CI times by pre-building stylish-haskell on hydra
- Loading branch information
1 parent
a5fecf0
commit 3c5af93
Showing
3 changed files
with
16 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,8 @@ | ||
(import ./default.nix {}).shell | ||
let | ||
self = import ./default.nix {}; | ||
# a shell that only has basic CI tools, and no dependencies | ||
ci-shell = self.pkgs.stdenv.mkDerivation { | ||
name = "ci-shell"; | ||
buildInputs = [ self.pkgs.haskellPackages.stylish-haskell self.iohkLib.hlint ]; | ||
}; | ||
in self.shell // { inherit ci-shell; } |