Skip to content
This repository was archived by the owner on Sep 28, 2024. It is now read-only.
/ icc-travis Public archive

Directions for installing ICC compiler on Travis CI

Notifications You must be signed in to change notification settings

nemequ/icc-travis

Repository files navigation

Instructions

The script that lives here doesn't really work anymore for most licenses and hasn't been updated for newer versions of ICC, but there is now a much easier way: use Intel's APT repository.

This integrates nicely with Travis CI's APT Addon, or you can install it manually.

Using Travis CI's APT Addon

You'll need to add the following to your .travis.yml file:

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

If you would like an example, see SIMDe's .travis.yml