From 0a19162fa9a7713be7a62aca217ad9a16d82c308 Mon Sep 17 00:00:00 2001 From: seese Date: Tue, 1 May 2018 23:47:53 +0200 Subject: [PATCH] buildbot: disable tests on aarch64 because of TimeoutErrors (#39826) buildbot: disable tests because of TimeoutErrors - only on aarch64 --- pkgs/development/tools/build-managers/buildbot/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/tools/build-managers/buildbot/default.nix b/pkgs/development/tools/build-managers/buildbot/default.nix index 98adaf1c1aa..ae540104df3 100644 --- a/pkgs/development/tools/build-managers/buildbot/default.nix +++ b/pkgs/development/tools/build-managers/buildbot/default.nix @@ -76,6 +76,9 @@ let ./skip_test_linux_distro.patch ]; + # TimeoutErrors on slow machines -> aarch64 + doCheck = !stdenv.isAarch64; + postPatch = '' substituteInPlace buildbot/scripts/logwatcher.py --replace '/usr/bin/tail' "$(type -P tail)" '';