File tree 2 files changed +9
-3
lines changed
2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 62
62
compiler=${COMPILER:-gcc}
63
63
platform=$(uname -s | tr '[:upper:]' '[:lower:]')
64
64
65
+ if [[ "$RUNNER_OS" == "macOS" ]] && [[ "$compiler" == "intel" ]]; then
66
+ echo "Compiler 'intel' not supported on macOS, falling back to 'intel-classic'"
67
+ compiler="intel-classic"
68
+ fi
69
+
65
70
case $compiler in
66
71
gcc)
67
72
version=${VERSION:-13}
72
77
install_intel $platform true ${{ inputs.install_mkl }}
73
78
;;
74
79
intel)
75
- version=${VERSION:-2023.2 .0}
80
+ version=${VERSION:-2024 .0}
76
81
install_intel $platform false ${{ inputs.install_mkl }}
77
82
;;
78
83
nvidia-hpc)
Original file line number Diff line number Diff line change @@ -397,7 +397,7 @@ install_intel_apt()
397
397
fi
398
398
399
399
source /opt/intel/oneapi/setvars.sh
400
-
400
+ # these exports have been removed in later versions of the action?
401
401
if $classic ; then
402
402
export FC=" ifort"
403
403
export CC=" icc"
@@ -512,7 +512,8 @@ install_intel_dmg()
512
512
rm m_HPCKit.dmg
513
513
514
514
source /opt/intel/oneapi/setvars.sh
515
-
515
+
516
+ # these exports have been removed in later versions of the action?
516
517
export FC=" ifort"
517
518
export CC=" icc"
518
519
export CXX=" icpc"
You can’t perform that action at this time.
0 commit comments