CI: disable ICC

It seems that Intel changed something in their license management.
https://github.com/nemequ/icc-travis/issues/15
This commit is contained in:
Akim Demaille
2019-09-14 09:54:03 +02:00
parent b3e9c20227
commit 8add45dbd9

View File

@@ -113,21 +113,22 @@ jobs:
# Do not use ASAN with ubuntu's libc++: https://bugs.llvm.org/show_bug.cgi?id=17379 # Do not use ASAN with ubuntu's libc++: https://bugs.llvm.org/show_bug.cgi?id=17379
- MATRIX_EVAL="PART=2 CC='clang-8 -fsanitize=address' CXX='clang++-8 -fsanitize=address -stdlib=libc++'" - MATRIX_EVAL="PART=2 CC='clang-8 -fsanitize=address' CXX='clang++-8 -fsanitize=address -stdlib=libc++'"
- name: "ICC" # Currently no longer works (https://github.com/nemequ/icc-travis/issues/15).
stage: test # - name: "ICC"
# We need the build-aux/install-icc.sh script. # stage: test
git: # # We need the build-aux/install-icc.sh script.
clone: true # git:
submodules: false # clone: true
depth: 1 # submodules: false
os: linux # depth: 1
dist: xenial # os: linux
env: # dist: xenial
# ICC's warnings are often very wrong (e.g., it thinks foo ? # env:
# "bar" : "baz" is char* instead of const char*), so don't try # # ICC's warnings are often very wrong (e.g., it thinks foo ?
# to work around the, and obviously, don't die on them. # # "bar" : "baz" is char* instead of const char*), so don't try
- MATRIX_EVAL="CC=icc && CXX=icpc" # # to work around the, and obviously, don't die on them.
- MAKE_ARGS='WERROR_CFLAGS= WERROR_CXXFLAGS=' # - MATRIX_EVAL="CC=icc && CXX=icpc"
# - MAKE_ARGS='WERROR_CFLAGS= WERROR_CXXFLAGS='
## ----- ## ## ----- ##