git.delta.rocks / jrsonnet / refs/commits / 3732ed2e048f

difftreelog

ci run the remaining tests

wlploorwYaroslav Bolyukin2026-05-06parent: #f78972c.patch.diff
in: master

1 file changed

modifiednix/jrsonnet.nixdiffbeforeafterboth
17 filter = path: type: (lib.hasSuffix "\.jsonnet" path) || (craneLib.filterCargoSources path type);17 filter =
18 path: type:
19 (lib.hasSuffix "\.jsonnet" path)
20 || (lib.hasSuffix "\.ungram" path)
21 || (lib.hasSuffix "\.golden" path)
22 || (lib.hasSuffix "\.snap" path)
23 || (craneLib.filterCargoSources path type);
18 };24 };
19 pname = "jrsonnet";25 pname = "jrsonnet";
20 version = "current${optionalString withExperimentalFeatures "-experimental"}";26 version = "current${optionalString withExperimentalFeatures "-experimental"}";
2127
22 cargoExtraArgs = "--locked --features=mimalloc${optionalString withExperimentalFeatures ",experimental"}";28 cargoExtraArgs = "--locked --features=mimalloc${optionalString withExperimentalFeatures ",experimental"}";
29 cargoTestExtraArgs = "--workspace";
2330
24 CPP_JSONNET_FOR_TESTS = cpp-jsonnet-for-tests;31 CPP_JSONNET_FOR_TESTS = cpp-jsonnet-for-tests;
25 GO_JSONNET_FOR_TESTS = go-jsonnet-for-tests;32 GO_JSONNET_FOR_TESTS = go-jsonnet-for-tests;