From: Yann Collet Date: Thu, 7 Jun 2018 19:18:47 +0000 (-0700) Subject: disable aarch64 test on travis CI X-Git-Tag: v1.3.5~3^2~28^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3cdb342bd5bb771b1e165f34daeb47e449d2cbdf;p=thirdparty%2Fzstd.git 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. --- diff --git a/.travis.yml b/.travis.yml index a9c1db525..a8426a8da 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'