Skip to content

Commit

Permalink
refactor!(flake): drop support for x86_64-darwin
Browse files Browse the repository at this point in the history
  • Loading branch information
midchildan committed Sep 1, 2024
1 parent 2b614a9 commit dc2dfe1
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
flake:
strategy:
matrix:
runners: [ubuntu-latest, macos-latest, macos-13]
runners: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.runners }}
steps:
- uses: actions/checkout@v4
Expand Down
1 change: 0 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@
systems = [
"aarch64-darwin"
"aarch64-linux"
"x86_64-darwin"
"x86_64-linux"
];
};
Expand Down
1 change: 0 additions & 1 deletion nix/darwin/machines/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,5 @@ in
# By default Nix-Darwin would look for a configuration whose name matches
# its hostname.
ci = importDarwin ./ci.nix { pkgs = pkgsFor "aarch64-darwin"; };
ci-amd64 = importDarwin ./ci.nix { pkgs = pkgsFor "x86_64-darwin"; };
};
}
1 change: 0 additions & 1 deletion nix/templates/devenv/flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@

systems = [
"x86_64-linux"
"x86_64-darwin"
"aarch64-linux"
"aarch64-darwin"
];
Expand Down

0 comments on commit dc2dfe1

Please sign in to comment.