From 3cdb342bd5bb771b1e165f34daeb47e449d2cbdf Mon Sep 17 00:00:00 2001 From: Yann Collet Date: Thu, 7 Jun 2018 12:18:47 -0700 Subject: [PATCH] disable aarch64 test on travis CI there's a bug on travis' ld > collect2: error: ld terminated with signal 11 [Segmentation fault], core dumped I cannot reproduce it. Note that travis' ld version is 2.24 while the one in my Linux VM is 2.26.1. ld is part of binutils, so it's pretty hard to change. I would expect the bug to no longer be triggered after some random code change. To be re-enabled later. --- .travis.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index a9c1db52..a8426a8d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -23,7 +23,11 @@ matrix: - env: Cmd='make valgrindinstall && make -C tests clean valgrindTest' - env: Cmd='make arminstall && make armfuzz' - - env: Cmd='make arminstall && make aarch64fuzz' +# Following test is disabled, as there is a bug in Travis' ld +# preventing aarch64 compilation to complete. +# > collect2: error: ld terminated with signal 11 [Segmentation fault], core dumped +# to be re-enabled in a few commit, as it's possible that a random code change circumvent the ld bug +# - env: Cmd='make arminstall && make aarch64fuzz' - env: Cmd='make ppcinstall && make ppcfuzz' - env: Cmd='make ppcinstall && make ppc64fuzz' - env: Cmd='make -j uasanregressiontest'