summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorAkim Demaille <akim.demaille@gmail.com>2019-09-14 09:54:03 +0200
committerAkim Demaille <akim.demaille@gmail.com>2019-09-14 09:55:17 +0200
commit2f6e377953b423e3102be5fd372c6c89ab6c4489 (patch)
treec7d4ff1cf8d7dae247e0a49dbffdb44d18253a57 /.travis.yml
parent32dff87c1d0ab58f94e093b8468389654ecb9941 (diff)
downloadbison-2f6e377953b423e3102be5fd372c6c89ab6c4489.tar.gz
CI: disable ICC
It seems that Intel changed something in their license management. https://github.com/nemequ/icc-travis/issues/15
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml31
1 files changed, 16 insertions, 15 deletions
diff --git a/.travis.yml b/.travis.yml
index 01bebe74..5f0011c8 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -113,21 +113,22 @@ jobs:
# 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++'"
- - name: "ICC"
- stage: test
- # We need the build-aux/install-icc.sh script.
- git:
- clone: true
- submodules: false
- depth: 1
- os: linux
- dist: xenial
- env:
- # ICC's warnings are often very wrong (e.g., it thinks foo ?
- # "bar" : "baz" is char* instead of const char*), so don't try
- # to work around the, and obviously, don't die on them.
- - MATRIX_EVAL="CC=icc && CXX=icpc"
- - MAKE_ARGS='WERROR_CFLAGS= WERROR_CXXFLAGS='
+ # Currently no longer works (https://github.com/nemequ/icc-travis/issues/15).
+ # - name: "ICC"
+ # stage: test
+ # # We need the build-aux/install-icc.sh script.
+ # git:
+ # clone: true
+ # submodules: false
+ # depth: 1
+ # os: linux
+ # dist: xenial
+ # env:
+ # # ICC's warnings are often very wrong (e.g., it thinks foo ?
+ # # "bar" : "baz" is char* instead of const char*), so don't try
+ # # to work around the, and obviously, don't die on them.
+ # - MATRIX_EVAL="CC=icc && CXX=icpc"
+ # - MAKE_ARGS='WERROR_CFLAGS= WERROR_CXXFLAGS='
## ----- ##