Skip to content

Commit 72ebd24

Browse files
Nix: Remove aarch64 for now
1 parent cfb9ea5 commit 72ebd24

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

flake.nix

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,15 @@
1313
nix-github-actions
1414
}:
1515
let
16-
githubSystems = builtins.attrNames nix-github-actions.lib.githubPlatforms;
1716
lib = nixpkgs.lib;
18-
forAllSystems = lib.genAttrs lib.systems.flakeExposed;
19-
forGithubSystems = lib.genAttrs githubSystems;
17+
# githubSystems = builtins.attrNames nix-github-actions.lib.githubPlatforms;
18+
# forAllSystems = lib.genAttrs lib.systems.flakeExposed;
19+
# forGithubSystems = lib.genAttrs githubSystems;
20+
# TODO: githubSystems should be supportedSystems intersects lib.githubPlatforms
21+
# Some of the dependencies don't build on aarch64. Will fix later
22+
supportedSystems = [ "x86_64-linux" "x86_64-darwin" ];
23+
forAllSystems = lib.genAttrs supportedSystems;
24+
forGithubSystems = lib.genAttrs supportedSystems;
2025
in {
2126
packages = forAllSystems (system:
2227
let pkgs = import nixpkgs { inherit system; };
@@ -25,7 +30,7 @@
2530
src = self;
2631
platforms = lib.systems.flakeExposed;
2732
};
28-
# default gets duplicated in githubActions
33+
# FIXME: default gets duplicated in githubActions
2934
# default = self.packages.${system}.pcsx-redux;
3035
});
3136

0 commit comments

Comments
 (0)