@@ -52,17 +52,18 @@ jobs:
5252 - name : Install fypp
5353 run : pip install --upgrade fypp
5454
55- - name : Install GFortran Linux
55+ - name : Install GCC compilers Linux
5656 if : contains( matrix.os, 'ubuntu')
5757 run : |
5858 sudo add-apt-repository ppa:ubuntu-toolchain-r/test
5959 sudo apt-get update
60- sudo apt-get install -y gcc-${GCC_V} gfortran-${GCC_V}
60+ sudo apt-get install -y gcc-${GCC_V} g++-${GCC_V} gfortran-${GCC_V}
6161 sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-${GCC_V} 100 \
6262 --slave /usr/bin/gfortran gfortran /usr/bin/gfortran-${GCC_V} \
63+ --slave /usr/bin/g++ g++ /usr/bin/g++-${GCC_V} \
6364 --slave /usr/bin/gcov gcov /usr/bin/gcov-${GCC_V}
6465
65- - name : Install GFortran macOS
66+ - name : Install GCC compilers macOS
6667 if : contains( matrix.os, 'macos')
6768 run : |
6869 brew install gcc@${GCC_V} || brew upgrade gcc@${GCC_V} || true
@@ -160,6 +161,7 @@ jobs:
160161 if : contains(matrix.os, 'ubuntu')
161162 run : |
162163 sudo apt-get install intel-oneapi-compiler-fortran
164+ sudo apt-get install intel-oneapi-compiler-dpcpp-cpp-and-cpp-classic
163165
164166 - name : Install Intel oneAPI compiler (OSX)
165167 if : contains(matrix.os, 'macos') && steps.cache-install.outputs.cache-hit != 'true'
0 commit comments