We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e513820 commit 498f467Copy full SHA for 498f467
.github/workflows/CI.yml
@@ -31,6 +31,8 @@ jobs:
31
build: make
32
env:
33
FC: gfortran-${{ matrix.gcc_v }}
34
+ CC: gcc-${{ matrix.gcc_v }}
35
+ CXX: g++-${{ matrix.gcc_v }}
36
GCC_V: ${{ matrix.gcc_v }}
37
BUILD_DIR: ${{ matrix.build == 'cmake' && 'build' || '.' }}
38
@@ -107,12 +109,16 @@ jobs:
107
109
matrix:
108
110
os: [ubuntu-latest, macos-latest]
111
fc: [ifort]
112
+ cc: [icc]
113
+ cxx: [icpc]
114
115
MACOS_HPCKIT_URL: >-
116
https://registrationcenter-download.intel.com/akdlm/irc_nas/17398/m_HPCKit_p_2021.1.0.2681_offline.dmg
117
MACOS_FORTRAN_COMPONENTS: >-
118
intel.oneapi.mac.ifort-compiler
119
FC: ${{ matrix.fc }}
120
+ CC: ${{ matrix.cc }}
121
+ CXX: ${{ matrix.cxx }}
122
123
steps:
124
- name: Checkout code
0 commit comments