From fcc627d7d127e1b24ceb66762151daec4f194827 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nikodem=20Rabuli=C5=84ski?= Date: Mon, 25 Sep 2023 20:18:25 +0200 Subject: [PATCH] Remove aarch64-darwin from herculesCI.ciSystems --- effects.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/effects.nix b/effects.nix index 13bebcc..4d456c8 100644 --- a/effects.nix +++ b/effects.nix @@ -1,4 +1,4 @@ -{ +{lib, ...}: { defaultEffectSystem = "aarch64-linux"; hercules-ci = { @@ -7,4 +7,10 @@ when.dayOfWeek = "Mon"; }; }; + + # TODO: Remove once I set up a macOS server + herculesCI.ciSystems = lib.mkForce [ + "x86_64-linux" + "aarch64-linux" + ]; }