Skip to content

Commit

Permalink
Disable tests when building verible
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
hcallahan-lowrisc committed Jul 25, 2024
1 parent 0f5e963 commit 940ed45
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pkgs/verible.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [];
});
})

0 comments on commit 940ed45

Please sign in to comment.