Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Merge pull request #62896 from womfoo/fix/orc-skip-tests-on-armv7l

orc: disable tests on armv7l

authored by Matthew Bauer and committed by GitHub c51d8d97 0dd06ec6

+3 -2
+3 -2
pkgs/development/compilers/orc/default.nix
··· 15 15 sed "/^toolsdir=/ctoolsdir=$dev/bin" -i "$dev"/lib/pkgconfig/orc*.pc 16 16 ''; 17 17 18 - # https://bugzilla.gnome.org/show_bug.cgi?id=728129#c15 19 - doCheck = stdenv.hostPlatform.system != "i686-linux"; # not sure about cross-compiling 18 + # i686 https://gitlab.freedesktop.org/gstreamer/orc/issues/18 19 + # armv7l https://gitlab.freedesktop.org/gstreamer/orc/issues/9 20 + doCheck = (!stdenv.hostPlatform.isi686 && !stdenv.hostPlatform.isAarch32); 20 21 21 22 meta = with stdenv.lib; { 22 23 description = "The Oil Runtime Compiler";