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
main
Vladimír Čunát 2 years ago
parent 5411ee6465
commit 11110136f5
No known key found for this signature in database
GPG Key ID: E747DF1F9575A3AA
  1. 3
      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" ]

Loading…
Cancel
Save