]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
disable aarch64 test on travis CI 1165/head
authorYann Collet <cyan@fb.com>
Thu, 7 Jun 2018 19:18:47 +0000 (12:18 -0700)
committerYann Collet <cyan@fb.com>
Thu, 7 Jun 2018 19:18:47 +0000 (12:18 -0700)
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

index a9c1db525f386695f1cb3abd99f3e22d9b623d6e..a8426a8da79dc15470767dbbcc230c418f78bb48 100644 (file)
@@ -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'