buildbot: disable tests on aarch64 because of TimeoutErrors (#39826)

buildbot: disable tests because of TimeoutErrors - only on aarch64
This commit is contained in:
seese 2018-05-01 23:47:53 +02:00 committed by xeji
parent c46c5b8f4e
commit 0a19162fa9

View file

@ -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)"
'';