From 3732ed2e048f98f8796257f37c3e506b9dc8b5cc Mon Sep 17 00:00:00 2001 From: Yaroslav Bolyukin Date: Wed, 06 May 2026 02:14:04 +0000 Subject: [PATCH] ci: run the remaining tests --- --- a/nix/jrsonnet.nix +++ b/nix/jrsonnet.nix @@ -14,12 +14,19 @@ craneLib.buildPackage { src = lib.cleanSourceWith { src = ../.; - filter = path: type: (lib.hasSuffix "\.jsonnet" path) || (craneLib.filterCargoSources path type); + filter = + path: type: + (lib.hasSuffix "\.jsonnet" path) + || (lib.hasSuffix "\.ungram" path) + || (lib.hasSuffix "\.golden" path) + || (lib.hasSuffix "\.snap" path) + || (craneLib.filterCargoSources path type); }; pname = "jrsonnet"; version = "current${optionalString withExperimentalFeatures "-experimental"}"; cargoExtraArgs = "--locked --features=mimalloc${optionalString withExperimentalFeatures ",experimental"}"; + cargoTestExtraArgs = "--workspace"; CPP_JSONNET_FOR_TESTS = cpp-jsonnet-for-tests; GO_JSONNET_FOR_TESTS = go-jsonnet-for-tests; -- gitstuff