bind: avoid tests on aarch64-linux for now

They fail on some machines repeatedly and they were only enabled
around a day ago (6fa6198586).
This commit is contained in:
Vladimír Čunát 2023-03-06 12:14:35 +01:00
parent bebc55113c
commit 41020c3241
No known key found for this signature in database
GPG Key ID: E747DF1F9575A3AA

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