Merge pull request #252718 from vcunat/p/bind-tests-i686

bind: disable tests on *all* 32-bit platforms
This commit is contained in:
Weijia Wang 2023-09-02 00:54:27 +02:00 committed by GitHub
commit 56df47d085
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -79,7 +79,9 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
# 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) && !isi686;
doCheck = with stdenv.hostPlatform; !isStatic && !(isAarch64 && isLinux)
# https://gitlab.isc.org/isc-projects/bind9/-/issues/4269
&& !is32bit;
checkTarget = "unit";
checkInputs = [
cmocka