diff options
-rw-r--r-- | third_party/cpp/googleapis/default.nix | 3 | ||||
-rw-r--r-- | third_party/git-bug/default.nix | 1 | ||||
-rw-r--r-- | third_party/notmuch/default.nix | 3 | ||||
-rw-r--r-- | tools/depot-scanner/default.nix | 2 |
4 files changed, 8 insertions, 1 deletions
diff --git a/third_party/cpp/googleapis/default.nix b/third_party/cpp/googleapis/default.nix index bb1737bb92fa..5fc40ac9f7ad 100644 --- a/third_party/cpp/googleapis/default.nix +++ b/third_party/cpp/googleapis/default.nix @@ -21,4 +21,7 @@ in stdenv.mkDerivation { ]; nativeBuildInputs = with pkgs; [ cmake pkgconfig ]; + + # Builds are failing, that's not good. + meta.ci = false; } diff --git a/third_party/git-bug/default.nix b/third_party/git-bug/default.nix index 9c24a03693ac..be9671afce81 100644 --- a/third_party/git-bug/default.nix +++ b/third_party/git-bug/default.nix @@ -4,6 +4,7 @@ pkgs.buildGoModule { pname = "git-bug"; version = "unstable-20200614"; vendorSha256 = "1lmcs1b0rr2xfajmz205pjp94v8ih1qpj69za06wbp24r5nc2cjg"; + doCheck = false; nativeBuildInputs = [ pkgs.installShellFiles ]; diff --git a/third_party/notmuch/default.nix b/third_party/notmuch/default.nix index 8e1e9c262638..1a7a0134cef8 100644 --- a/third_party/notmuch/default.nix +++ b/third_party/notmuch/default.nix @@ -3,4 +3,7 @@ pkgs.originals.notmuch.overrideAttrs(old: { doCheck = false; patches = [ ./dottime.patch ] ++ (if old ? patches then old.patches else []); + + # TODO(tazjin): Fix the build and re-enable CI. + meta.ci = false; }) diff --git a/tools/depot-scanner/default.nix b/tools/depot-scanner/default.nix index d18034cff0fd..e6fd5dec292c 100644 --- a/tools/depot-scanner/default.nix +++ b/tools/depot-scanner/default.nix @@ -13,4 +13,4 @@ in depot.nix.buildGo.program { deps = [ localProto ]; -} // { inherit localProto; } +} // { inherit localProto; meta.ci = false; } |