diff options
author | Vincent Ambo <mail@tazj.in> | 2020-08-26T22·55+0100 |
---|---|---|
committer | tazjin <mail@tazj.in> | 2020-08-26T23·49+0000 |
commit | 7e6b3e1b428bd5ea860c05d0c5a71cd1ecd23364 (patch) | |
tree | bac1a286f3a215b60b1201e32ec0e4acdf29c69a /third_party | |
parent | 970f90c711d358999af9669835588968e1008439 (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.nix | 3 | ||||
-rw-r--r-- | third_party/git-bug/default.nix | 1 | ||||
-rw-r--r-- | third_party/notmuch/default.nix | 3 |
3 files changed, 7 insertions, 0 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; }) |