about summary refs log tree commit diff
path: root/third_party
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2020-08-26T22·55+0100
committertazjin <mail@tazj.in>2020-08-26T23·49+0000
commit7e6b3e1b428bd5ea860c05d0c5a71cd1ecd23364 (patch)
treebac1a286f3a215b60b1201e32ec0e4acdf29c69a /third_party
parent970f90c711d358999af9669835588968e1008439 (diff)
chore: Add meta.ci=false to various broken projects r/1721
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 <rikingcoding@gmail.com>
Diffstat (limited to 'third_party')
-rw-r--r--third_party/cpp/googleapis/default.nix3
-rw-r--r--third_party/git-bug/default.nix1
-rw-r--r--third_party/notmuch/default.nix3
3 files changed, 7 insertions, 0 deletions
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;
 })