From c10e85addabd951d10270da1d0744ed2a57dfa16 Mon Sep 17 00:00:00 2001 From: George Gayno Date: Thu, 22 Aug 2024 14:12:19 -0500 Subject: [PATCH] Update ubuntu_intel.yaml workflow file to use IntelLLVM. Fixes #879. --- .github/workflows/ubuntu_intel.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ubuntu_intel.yaml b/.github/workflows/ubuntu_intel.yaml index 7c882c313..9b2da1e65 100644 --- a/.github/workflows/ubuntu_intel.yaml +++ b/.github/workflows/ubuntu_intel.yaml @@ -7,14 +7,14 @@ defaults: run: shell: bash -leo pipefail {0} -# Set I_MPI_CC/F90 so Intel MPI wrapper uses icc/ifort instead of gcc/gfortran +# Set I_MPI_CC/F90 so IntelLLVM is used. env: cache_key: intel - CC: icc - FC: ifort - CXX: icpc - I_MPI_CC: icc - I_MPI_F90: ifort + CC: mpiicc + FC: mpiifort + CXX: mpiicpc + I_MPI_CC: icx + I_MPI_F90: ifx # The jobs are split into: # 1. a dependency build step (setup), and