From 74100998b0f697c6a178fea12f20ea1d1f187c45 Mon Sep 17 00:00:00 2001 From: ThetaSinner Date: Tue, 22 Oct 2024 11:20:11 +0100 Subject: [PATCH] Include test data files in workspace build --- nix/modules/workspace.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/modules/workspace.nix b/nix/modules/workspace.nix index 31884324..51a0e6c8 100644 --- a/nix/modules/workspace.nix +++ b/nix/modules/workspace.nix @@ -7,7 +7,7 @@ let then pkgs.openssl # pkgsStatic is considered a cross build and this is not yet supported else pkgs.pkgsStatic.openssl; - nonCargoBuildFiles = path: _type: builtins.match ".*(conductor-config.yaml|conductor-config-ci.yaml)$" path != null; + nonCargoBuildFiles = path: _type: builtins.match ".*(conductor-config.yaml|conductor-config-ci.yaml|summariser/test_data/.*.json)$" path != null; includeFilesFilter = path: type: (craneLib.filterCargoSources path type) || (nonCargoBuildFiles path type);