Fail on all warnings in CI

All the undefineds are gone, so it's time to enable -Werror in CI.
This commit is contained in:
Griffin Smith 2019-11-30 18:16:48 -05:00
parent 97a5c61f28
commit 0b22bb099c
5 changed files with 14 additions and 11 deletions

View file

@ -1,11 +1,15 @@
{ nixpkgs ? import ./nixpkgs.nix {}
, compiler ? "ghc865" }:
, compiler ? "ghc865"
, failOnWarnings ? false
}:
let
inherit (nixpkgs) pkgs;
inherit (nixpkgs) pkgs lib;
inherit (lib) id;
all-hies = import (fetchTarball "https://github.com/infinisil/all-hies/tarball/master") {};
hie = all-hies.selection { selector = p: { inherit (p) ghc865; }; };
xanthous = (pkgs.haskellPackages
.extend (import ./haskell-overlay.nix { inherit nixpkgs; }))
.callPackage (import ./pkg.nix { inherit nixpkgs; }) {};
in
xanthous =
(if failOnWarnings then pkgs.haskell.lib.failOnAllWarnings else id)
((pkgs.haskellPackages
.extend (import ./haskell-overlay.nix { inherit nixpkgs; })
).callPackage (import ./pkg.nix { inherit nixpkgs; }) {}); in
xanthous // { inherit hie; }