From 1bc56dfa4c8443ce193c1196c9176f9668a4ab09 Mon Sep 17 00:00:00 2001 From: Bimba Shrestha Date: Tue, 3 Mar 2020 15:22:35 -0800 Subject: [PATCH 1/2] Adding icc make check to travis ci --- .travis.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/.travis.yml b/.travis.yml index 282e0e7d6..b8a0244a5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -25,6 +25,23 @@ env: matrix: fast_finish: true include: + - name: icc + compiler: icc + env: + - C_COMPILER=icc + - CXX_COMPILER=icpc + - COMPILER_FLAGS='-wd13200 -wd13203' + install: + - source /opt/intel/inteloneapi/compiler/latest/env/vars.sh + addons: + apt: + sources: + - sourceline: 'deb https://apt.repos.intel.com/oneapi all main' + key_url: 'https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS-2023.PUB' + packages: + - intel-oneapi-icc + script: make check + - name: arm64 # ~2.5 mn os: linux arch: arm64 From c7060bb7116eec55de9536f4670604e6731dc9ae Mon Sep 17 00:00:00 2001 From: Bimba Shrestha Date: Tue, 3 Mar 2020 15:46:11 -0800 Subject: [PATCH 2/2] Removing mmx compiler flags --- .travis.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index b8a0244a5..77227c364 100644 --- a/.travis.yml +++ b/.travis.yml @@ -30,7 +30,6 @@ matrix: env: - C_COMPILER=icc - CXX_COMPILER=icpc - - COMPILER_FLAGS='-wd13200 -wd13203' install: - source /opt/intel/inteloneapi/compiler/latest/env/vars.sh addons: