From 7e6b3e1b428bd5ea860c05d0c5a71cd1ecd23364 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Wed, 26 Aug 2020 23:55:32 +0100 Subject: chore: Add meta.ci=false to various broken projects These projects, which are not currently included in CI runs, don't build at the moment. Upcoming logic changes would mean that we would start including them in CI, which is undesirable until they're fixed - but I'm not going to be doing that now. Change-Id: I7c337e098be8bff00db6d99fc7236a695f5a85f5 Reviewed-on: https://cl.tvl.fyi/c/depot/+/1850 Tested-by: BuildkiteCI Reviewed-by: kanepyork --- third_party/cpp/googleapis/default.nix | 3 +++ third_party/git-bug/default.nix | 1 + third_party/notmuch/default.nix | 3 +++ tools/depot-scanner/default.nix | 2 +- 4 files changed, 8 insertions(+), 1 deletion(-) diff --git a/third_party/cpp/googleapis/default.nix b/third_party/cpp/googleapis/default.nix index bb1737bb92..5fc40ac9f7 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 9c24a03693..be9671afce 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 8e1e9c2626..1a7a0134ce 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 d18034cff0..e6fd5dec29 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; } -- cgit 1.4.1