From ac945ddea083f1cca008cb5237c850fb96231c3f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Fri, 27 Oct 2023 11:39:23 +0200 Subject: [PATCH 1/2] flake.lock: Update MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Flake lock file updates: • Updated input 'buildbot-nix': 'github:Mic92/buildbot-nix/3e4964c4ccd0bf19448ff051c7db4c8b3f12194b' (2023-10-27) → 'github:Mic92/buildbot-nix/1ce16321ca2349c381b1c8840019803971ef7f47' (2023-10-27) --- flake.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/flake.lock b/flake.lock index 2812d1ba2..ca4474c26 100644 --- a/flake.lock +++ b/flake.lock @@ -52,11 +52,11 @@ ] }, "locked": { - "lastModified": 1698388014, - "narHash": "sha256-YAZM28dB0hzeJUYKjMxAvfMx41yLgiSzZT1BDl1cBKE=", + "lastModified": 1698399551, + "narHash": "sha256-rjfai2pEOCVvHs+bk3coY/SIVKzRDMqRayJWVvvKGoQ=", "owner": "Mic92", "repo": "buildbot-nix", - "rev": "3e4964c4ccd0bf19448ff051c7db4c8b3f12194b", + "rev": "1ce16321ca2349c381b1c8840019803971ef7f47", "type": "github" }, "original": { From 1c3a445c74eae5c588c85b206da1c0889e304a33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Fri, 27 Oct 2023 11:54:11 +0200 Subject: [PATCH 2/2] buildbot: set supportedSystems --- flake.lock | 6 +++--- nixos/eve/modules/buildbot.nix | 5 +++++ 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/flake.lock b/flake.lock index ca4474c26..68b05e285 100644 --- a/flake.lock +++ b/flake.lock @@ -450,11 +450,11 @@ }, "nixpkgs": { "locked": { - "lastModified": 1682741954, - "narHash": "sha256-RPZxzRu8XU0YD2WeYUFYzJy5yAvWUsxkuK+zWw+6WVk=", + "lastModified": 1698391885, + "narHash": "sha256-FMpryNrpv2jka1ZSPd8jG5IrwcCYW/LNwIPoxwRPpV0=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "373e9eb4c42b2fc0611d794de5ea715a35d72393", + "rev": "e5b77178b7a77d6f65d7452a689acad2c879284a", "type": "github" }, "original": { diff --git a/nixos/eve/modules/buildbot.nix b/nixos/eve/modules/buildbot.nix index d1d8d30b3..2313c722e 100644 --- a/nixos/eve/modules/buildbot.nix +++ b/nixos/eve/modules/buildbot.nix @@ -3,6 +3,11 @@ enable = true; domain = "buildbot.thalheim.io"; workersFile = config.sops.secrets.buildbot-nix-workers.path; + buildSystems = [ + "aarch64-linux" + "x86_64-linux" + "aarch64-darwin" + ]; github = { tokenFile = config.sops.secrets.buildbot-github-token.path; webhookSecretFile = config.sops.secrets.buildbot-github-webhook-secret.path;