Merge pull request #219822 from vcunat/p/bind-tests

bind: avoid tests on aarch64-linux for now
This commit is contained in:
Martin Weinelt 2023-03-06 11:24:21 +00:00 committed by GitHub
commit 0087849474
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -61,7 +61,9 @@ stdenv.mkDerivation rec {
'';
enableParallelBuilding = true;
doCheck = !stdenv.hostPlatform.isStatic;
# TODO: investigate the aarch64-linux failures; see this and linked discussions:
# https://github.com/NixOS/nixpkgs/pull/192962
doCheck = with stdenv.hostPlatform; !isStatic && !(isAarch64 && isLinux);
checkTarget = "unit";
checkInputs = [
cmocka