lighthouse: fix cargoTestFlags/cargoBuildFlags for structuredAttrs

This commit is contained in:
Stefan Frijters
2026-01-28 12:16:11 +01:00
parent dded9091bc
commit fea8babd69
+11 -10
View File
@@ -78,7 +78,8 @@ rustPlatform.buildRustPackage rec {
};
cargoBuildFlags = [
"--package lighthouse"
"--package"
"lighthouse"
];
__darwinAllowLocalNetworking = true;
@@ -88,15 +89,15 @@ rustPlatform.buildRustPackage rec {
# All of these tests require network access and/or docker
cargoTestFlags = [
"--workspace"
"--exclude beacon_chain"
"--exclude beacon_node"
"--exclude http_api"
"--exclude lighthouse"
"--exclude lighthouse_network"
"--exclude network"
"--exclude slashing_protection"
"--exclude watch"
"--exclude web3signer_tests"
"--exclude=beacon_chain"
"--exclude=beacon_node"
"--exclude=http_api"
"--exclude=lighthouse"
"--exclude=lighthouse_network"
"--exclude=network"
"--exclude=slashing_protection"
"--exclude=watch"
"--exclude=web3signer_tests"
];
# All of these tests require network access