From 11110136f5061f2112858557938c62ce3fc79fa5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Sat, 22 Jan 2022 08:25:16 +0100 Subject: [PATCH] orc: disable a benchmark test on x86_64-darwin It now fails repeatedly on Hydra: https://hydra.nixos.org/build/164595567 and I don't think it's worth debugging why. Other platform had issues: https://gitlab.freedesktop.org/gstreamer/orc/-/commit/5c1f5216b4867 --- pkgs/development/compilers/orc/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/compilers/orc/default.nix b/pkgs/development/compilers/orc/default.nix index 2d56d461627..fa4bf686a2a 100644 --- a/pkgs/development/compilers/orc/default.nix +++ b/pkgs/development/compilers/orc/default.nix @@ -15,6 +15,9 @@ in stdenv.mkDerivation rec { postPatch = lib.optionalString stdenv.isAarch32 '' # https://gitlab.freedesktop.org/gstreamer/orc/-/issues/20 sed -i '/exec_opcodes_sys/d' testsuite/meson.build + '' + lib.optionalString (stdenv.isDarwin && stdenv.isx86_64) '' + # This benchmark times out on Hydra.nixos.org + sed -i '/memcpy_speed/d' testsuite/meson.build ''; outputs = [ "out" "dev" ]