Skip to content

Commit f202133

Browse files
committed
remove x86_64-darwin
1 parent d70c05e commit f202133

File tree

10 files changed

+10
-38
lines changed

10 files changed

+10
-38
lines changed

docs/community-builders.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ build-box.nix-community.org ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIElIQ54qAy7Dh63r
1212
aarch64-build-box.nix-community.org ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIG9uyfhyli+BRtk64y+niqtb+sKquRGGZ87f4YRc8EE1
1313
```
1414

15-
`aarch64-darwin`, `x86_64-darwin`
15+
`aarch64-darwin`
1616

1717
```
1818
darwin-build-box.nix-community.org ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKMHhlcn7fUpUuiOFeIhDqBzBNFsbNqq+NpzuGX3e6zv

docs/continuous-integration.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,11 @@ We provide CI for these platforms:
22

33
- `aarch64-darwin`
44
- `aarch64-linux`
5-
- `x86_64-darwin`
65
- `x86_64-linux`
76

87
Both `aarch64-linux` and `x86_64-linux` have support for `kvm`/`nixos-test`.
98

10-
We only have limited build capacity for `*-darwin` so please don't use it excessively.
9+
We only have limited build capacity for `aarch64-darwin` so please don't use it excessively.
1110

1211
See [here](./infrastructure.md#continuous-integration) for details about the hardware.
1312

docs/package-sets.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Built on `nixos-unstable-small` for `aarch64-linux`, `x86_64-linux`:
2222

2323
- [https://hydra.nix-community.org/jobset/nixpkgs/unfree-redist](https://hydra.nix-community.org/jobset/nixpkgs/unfree-redist)
2424

25-
Built on `nixpkgs-unstable` for `aarch64-darwin`, `x86_64-darwin`:
25+
Built on `nixpkgs-unstable` for `aarch64-darwin`:
2626

2727
- [https://hydra.nix-community.org/jobset/nixpkgs/unfree-redist-darwin](https://hydra.nix-community.org/jobset/nixpkgs/unfree-redist-darwin)
2828

flake.nix

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,12 @@
5757
outputs =
5858
inputs@{ flake-parts, self, ... }:
5959
flake-parts.lib.mkFlake { inherit inputs; } {
60-
systems = import inputs.systems;
60+
systems = [
61+
"aarch64-darwin"
62+
"aarch64-linux"
63+
# "x86_64-darwin"
64+
"x86_64-linux"
65+
];
6166

6267
imports = [
6368
./dev/dnscontrol.nix

hosts/darwin01/default.nix

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
nixCommunity.darwin.ipv6 = "2a01:4f8:d1:5716::2 64 2a01:4f8:d1:5716::1";
1111

1212
nix.settings.sandbox = "relaxed";
13-
nix.settings.extra-platforms = [ "x86_64-darwin" ];
1413

1514
# disable nixos-tests
1615
nix.settings.system-features = [ "big-parallel" ];

hosts/darwin02/default.nix

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
nixCommunity.darwin.ipv6 = "2a01:4f8:d1:5715::2 64 2a01:4f8:d1:5715::1";
1313

1414
nix.settings.sandbox = "relaxed";
15-
nix.settings.extra-platforms = [ "x86_64-darwin" ];
1615

1716
# disable nixos-tests
1817
nix.settings.system-features = [ "big-parallel" ];

modules/darwin/common/apfs-cleanup.nix

Lines changed: 0 additions & 21 deletions
This file was deleted.

modules/darwin/common/default.nix

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
imports = [
44
../../shared/known-hosts.nix
55
../../shared/nix-daemon.nix
6-
./apfs-cleanup.nix
76
./builder.nix
87
./network.nix
98
./packages.nix

modules/darwin/common/software-update.nix

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,4 @@
1-
{ lib, ... }:
21
{
3-
system.activationScripts.postActivation.text = lib.mkBefore ''
4-
if ! pgrep -q oahd; then
5-
echo installing rosetta... >&2
6-
softwareupdate --install-rosetta --agree-to-license
7-
fi
8-
'';
9-
102
system.defaults.CustomSystemPreferences = {
113
# check daily, install critical updates, disable macos updates
124
"/Library/Preferences/com.apple.SoftwareUpdate" = {

terraform/hydra-nixpkgs.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ locals {
5353
release_file = "pkgs/top-level/release-unfree-redistributable.nix"
5454
check_interval = 1800
5555
scheduling_shares = 5000
56-
supported_systems = ["aarch64-darwin", "x86_64-darwin"]
56+
supported_systems = ["aarch64-darwin"]
5757
}
5858
unfree_redist_full = {
5959
name = "unfree-redist-full"

0 commit comments

Comments
 (0)