diff options
author | Takayuki Matsuoka <t-mat@users.noreply.github.com> | 2021-05-31 02:22:25 (GMT) |
---|---|---|
committer | Takayuki Matsuoka <t-mat@users.noreply.github.com> | 2021-05-31 02:22:25 (GMT) |
commit | 42c3351af66741e1a3aef55e7eb947c1c7be7181 (patch) | |
tree | fa6eed5b8b2dbc18ef370e4f268c85c593b46669 | |
parent | f2a5599c8d2b4d3756f6ca893fcf9aa1e1096322 (diff) | |
download | lz4-42c3351af66741e1a3aef55e7eb947c1c7be7181.zip lz4-42c3351af66741e1a3aef55e7eb947c1c7be7181.tar.gz lz4-42c3351af66741e1a3aef55e7eb947c1c7be7181.tar.bz2 |
Disable "(Xenial) gcc-5 compilation"
[lz4-c-compilers] contains the following commands for gcc-5
```
make -C tests test-lz4
make -C tests test-lz4c32
```
[lz4-c-compilers] https://github.com/lz4/lz4/blob/025c3ce8f994213371a4260ae932ea244d44c6fc/.github/workflows/ci.yml#L17-L154
-rw-r--r-- | .travis.yml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/.travis.yml b/.travis.yml index 4b5665a..edbfdd2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -138,13 +138,13 @@ matrix: script: - make test - - name: (Xenial) gcc-5 compilation - dist: xenial - install: - - sudo apt-get install -qq libc6-dev-i386 gcc-multilib - script: - - make -C tests test-lz4 clean test-lz4c32 MOREFLAGS=-Werror - +# - name: (Xenial) gcc-5 compilation +# dist: xenial +# install: +# - sudo apt-get install -qq libc6-dev-i386 gcc-multilib +# script: +# - make -C tests test-lz4 clean test-lz4c32 MOREFLAGS=-Werror +# - name: (Trusty) clang-3.8 compilation dist: trusty addons: |