fix(tvix/store): allow building with Nix on Darwin
Curently both fuse and virtiofs features fail to build on Darwin. Disable them for now until fixed. Change-Id: Ic99fa5e3ebec8a7072ba884101a5c18652ed409c Reviewed-on: https://cl.tvl.fyi/c/depot/+/9473 Autosubmit: flokli <flokli@flokli.de> Reviewed-by: raitobezarius <tvl@lahfa.xyz> Tested-by: BuildkiteCI
This commit is contained in:
parent
6b02800e48
commit
d8f5c5b109
1 changed files with 2 additions and 0 deletions
|
@ -24,6 +24,8 @@ in
|
||||||
|
|
||||||
(depot.tvix.crates.workspaceMembers.tvix-store.build.override {
|
(depot.tvix.crates.workspaceMembers.tvix-store.build.override {
|
||||||
runTests = true;
|
runTests = true;
|
||||||
|
# both fuse and virtiofs features currently fail to build on Darwin.
|
||||||
|
features = if pkgs.stdenv.isDarwin then [ "tonic-reflection" ] else [ "default" ];
|
||||||
}).overrideAttrs (_: {
|
}).overrideAttrs (_: {
|
||||||
meta.ci.extraSteps = {
|
meta.ci.extraSteps = {
|
||||||
import-docs = (mkImportCheck "tvix/store/docs" ./docs);
|
import-docs = (mkImportCheck "tvix/store/docs" ./docs);
|
||||||
|
|
Loading…
Add table
Reference in a new issue