We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13dce0c commit cb3e2b2Copy full SHA for cb3e2b2
flake.nix
@@ -343,7 +343,10 @@
343
variants = mapAttrs (_: v: removeAttrs v.native ["variants"]) ciJobsVariants;
344
};
345
musl = let
346
- muslProject = project.projectCross.musl64;
+ muslProject =
347
+ if system == "aarch64-linux"
348
+ then project.projectCross.aarch64-multiplatform-musl
349
+ else project.projectCross.musl64;
350
projectExes = collectExes muslProject;
351
in
352
projectExes
0 commit comments