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

orc: disable tests on armv7l
This commit is contained in:
Matthew Bauer 2019-06-11 17:34:15 -04:00 committed by GitHub
commit c51d8d97b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -15,8 +15,9 @@ stdenv.mkDerivation rec {
sed "/^toolsdir=/ctoolsdir=$dev/bin" -i "$dev"/lib/pkgconfig/orc*.pc
'';
# https://bugzilla.gnome.org/show_bug.cgi?id=728129#c15
doCheck = stdenv.hostPlatform.system != "i686-linux"; # not sure about cross-compiling
# i686 https://gitlab.freedesktop.org/gstreamer/orc/issues/18
# armv7l https://gitlab.freedesktop.org/gstreamer/orc/issues/9
doCheck = (!stdenv.hostPlatform.isi686 && !stdenv.hostPlatform.isAarch32);
meta = with stdenv.lib; {
description = "The Oil Runtime Compiler";