Skip to content

Commit fe2946b

Browse files
committed
Fixed hercules config
1 parent cd6f7a9 commit fe2946b

File tree

1 file changed

+11
-10
lines changed

1 file changed

+11
-10
lines changed

flake.nix

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -229,9 +229,6 @@
229229
# Useful for nix repl
230230
inherit pkgs pkgsWithOverlay pkgsForPlutarch;
231231

232-
# Instruction for the Hercules CI to build on x86_64-linux only, to avoid errors about systems without agents.
233-
herculesCI.ciSystems = [ "x86_64-linux" ];
234-
235232
# Standard flake attributes
236233
packages = coopPlutusFlake.packages // coopPublisherFlake.packages // coopPabFlake.packages // coopHsTypesFlake.packages // {
237234
"coop-plutus-cli" = coopPlutusCli;
@@ -259,13 +256,17 @@
259256
# nix flake check --impure --keep-going --allow-import-from-derivation
260257
checks = renameAttrs (n: "check-${n}")
261258
(coopPlutusFlake.checks //
262-
coopPublisherFlake.checks //
263-
coopPabFlake.checks //
264-
coopHsTypesFlake.checks //
265-
coopExtrasPlutusJsonFlake.checks //
266-
coopExtrasJsonFactStatementStoreFlake.checks //
267-
cardanoProtoExtrasFlake.checks
259+
coopPublisherFlake.checks //
260+
coopPabFlake.checks //
261+
coopHsTypesFlake.checks //
262+
coopExtrasPlutusJsonFlake.checks //
263+
coopExtrasJsonFactStatementStoreFlake.checks //
264+
cardanoProtoExtrasFlake.checks
268265
) //
269266
{ inherit pre-commit-check; } // devShells // packages;
270-
});
267+
})
268+
// {
269+
# Instruction for the Hercules CI to build on x86_64-linux only, to avoid errors about systems without agents.
270+
herculesCI.ciSystems = [ "x86_64-linux" ];
271+
};
271272
}

0 commit comments

Comments
 (0)