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 eaefc20 commit 76aa79bCopy full SHA for 76aa79b
nix/github-actions.nix
@@ -1,6 +1,18 @@
1
{ inputs, ... }:
2
+let
3
+ githubPlatforms = {
4
+ "x86_64-linux" = "large-linux-x86";
5
+ "aarch64-linux" = "large-linux-arm";
6
+ "aarch64-darwin" = "macos-latest-xlarge";
7
+ };
8
+in
9
{
10
flake.githubActions = inputs.nix-github-actions.lib.mkGithubMatrix {
- checks = inputs.nixpkgs.lib.getAttrs [ "x86_64-linux" ] inputs.self.checks;
11
+ checks = inputs.nixpkgs.lib.getAttrs [
12
+ "x86_64-linux"
13
+ "aarch64-linux"
14
+ "aarch64-darwin"
15
+ ] inputs.self.checks;
16
+ platforms = githubPlatforms;
17
};
18
}
0 commit comments