File tree Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 3
3
- ubuntu-20.04
4
4
- macos-14
5
5
- macos-13
6
- - macos-12
7
6
- windows-2022
8
7
- windows-2019
9
8
toolchain :
@@ -12,6 +11,7 @@ toolchain:
12
11
- {compiler: gcc, version: 11}
13
12
- {compiler: gcc, version: 10}
14
13
- {compiler: gcc, version: 9}
14
+ - {compiler: intel, version: '2025.0'}
15
15
- {compiler: intel, version: '2024.1'}
16
16
- {compiler: intel, version: '2024.0'}
17
17
- {compiler: intel, version: '2023.2'}
Original file line number Diff line number Diff line change @@ -227,6 +227,9 @@ intel_version_map_l()
227
227
2024.0 | 2024.0.0)
228
228
version=2024.0
229
229
;;
230
+ 2025.0 | 2025.0.1)
231
+ version=2025.0
232
+ ;;
230
233
2021.1)
231
234
version=2021.1.1
232
235
;;
@@ -304,6 +307,9 @@ intel_version_map_w()
304
307
esac
305
308
else
306
309
case $actual_version in
310
+ 2025.0 | 2025.0.1)
311
+ version=2025.0.1
312
+ ;;
307
313
2024.1 | 2024.1.0)
308
314
version=2024.1.0
309
315
;;
@@ -343,7 +349,7 @@ install_intel_apt()
343
349
344
350
# c/cpp compiler package names changed with 2024+
345
351
case $version in
346
- 2024* )
352
+ 2024* | 2025 * )
347
353
sudo apt-get install \
348
354
intel-oneapi-compiler-{fortran,dpcpp-cpp}-$version
349
355
;;
@@ -434,6 +440,10 @@ install_intel_win()
434
440
intel_version_map_w $version $classic
435
441
436
442
case $version in
443
+ 2025.0.1)
444
+ WINDOWS_HPCKIT_URL=https://registrationcenter-download.intel.com/akdlm/IRC_NAS/a37c30c3-a846-4371-a85d-603e9a9eb94c/intel-oneapi-hpc-toolkit-2025.0.1.48_offline.exe
445
+ WINDOWS_HPCKIT_COMPONENTS=intel.oneapi.win.ifort-compiler:intel.oneapi.win.cpp-dpcpp-common
446
+ ;;
437
447
2024.1.0)
438
448
WINDOWS_HPCKIT_URL=https://registrationcenter-download.intel.com/akdlm/IRC_NAS/c95a3b26-fc45-496c-833b-df08b10297b9/w_HPCKit_p_2024.1.0.561_offline.exe
439
449
WINDOWS_HPCKIT_COMPONENTS=intel.oneapi.win.ifort-compiler:intel.oneapi.win.cpp-dpcpp-common
You can’t perform that action at this time.
0 commit comments