Skip to content

Commit 76aa79b

Browse files
committed
chores: use custom github runners
1 parent eaefc20 commit 76aa79b

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

nix/github-actions.nix

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
{ 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
29
{
310
flake.githubActions = inputs.nix-github-actions.lib.mkGithubMatrix {
4-
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;
517
};
618
}

0 commit comments

Comments
 (0)