From 940ed452b348acfc08e26e3a3043ee6aa3d6135d Mon Sep 17 00:00:00 2001 From: Harry Callahan Date: Wed, 24 Jul 2024 11:26:06 +0100 Subject: [PATCH] Disable tests when building verible Testing takes ~30m to run locally on a laptop, and there's not a huge amount of benefit in running the tests for us. Maybe in the future we could have a job that builds for our cache which explicity enables running the tests. Signed-off-by: Harry Callahan --- pkgs/verible.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/verible.nix b/pkgs/verible.nix index 6c02353..d3e4fef 100644 --- a/pkgs/verible.nix +++ b/pkgs/verible.nix @@ -25,11 +25,14 @@ verible.override (prev: { }; fetchAttrs = { - sha256 = "sha256-bKASgc5KftCWtMvJkGA4nweBAtgdnyC9uXIJxPjKYS0="; + sha256 = "sha256-/kN1hyTcq+sARJkk7aOXVJVFhyTWdcREF4EwSmelVU4="; }; patches = []; bazel = bazel_6; + + # Disable tests (takes ~30m to run locally on a laptop) + bazelTestTargets = []; }); })