From 7b271c8dfc261f6f0a86e4eb5e720dbef92ed737 Mon Sep 17 00:00:00 2001 From: Rhys-T <108157737+Rhys-T@users.noreply.github.com> Date: Thu, 17 Oct 2024 23:48:34 -0400 Subject: [PATCH] ci: temporarily skip hbmame on aarch64-linux The GitHub workflow is timing out. --- ci.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/ci.nix b/ci.nix index a929fbd..2c49c74 100644 --- a/ci.nix +++ b/ci.nix @@ -29,6 +29,7 @@ let licenseFromMeta = p.meta.license or []; licenseList = if builtins.isList licenseFromMeta then licenseFromMeta else [licenseFromMeta]; in + (platform != "aarch64-linux" || !lib.hasInfix "hbmame" (p.name or "")) && lib.meta.availableOn pkgs.hostPlatform p && !(p.meta.broken or false) && builtins.all (license: license.free or true) licenseList &&