@@ -7,43 +7,37 @@ trigger:
7
7
8
8
variables :
9
9
- name : WINDOWS_BASEKIT_URL
10
- value : https://registrationcenter-download.intel.com/akdlm/IRC_NAS/f96c71db-2c6c-45d9-8c1f-0348ef5885cf/w_BaseKit_p_2023.2 .0.49396_offline .exe
10
+ value : https://registrationcenter-download.intel.com/akdlm/IRC_NAS/62641e01-1e8d-4ace-91d6-ae03f7f8a71f/w_BaseKit_p_2024.0 .0.49563_offline .exe
11
11
- name : WINDOWS_HPCKIT_URL
12
- value : https://registrationcenter-download.intel.com/akdlm/IRC_NAS/438527fc-7140-422c-a851-389f2791816b/w_HPCKit_p_2023.2 .0.49441_offline .exe
12
+ value : https://registrationcenter-download.intel.com/akdlm/IRC_NAS/5b36181e-4974-4733-91c7-0c10c54900a5/w_HPCKit_p_2024.0 .0.49588_offline .exe
13
13
- name : LINUX_BASEKIT_URL
14
- value : https://registrationcenter-download.intel.com/akdlm/IRC_NAS/992857b9-624c-45de-9701-f6445d845359/l_BaseKit_p_2023.2 .0.49397_offline .sh
14
+ value : https://registrationcenter-download.intel.com/akdlm/IRC_NAS/20f4e6a1-6b0b-4752-b8c1-e5eacba10e01/l_BaseKit_p_2024.0 .0.49564_offline .sh
15
15
- name : LINUX_HPCKIT_URL
16
- value : https://registrationcenter-download.intel.com/akdlm/IRC_NAS/0722521a-34b5-4c41-af3f-d5d14e88248d/l_HPCKit_p_2023.2.0.49440_offline.sh
17
- - name : MACOS_HPCKIT_URL
18
- value : https://registrationcenter-download.intel.com/akdlm/IRC_NAS/edb4dc2f-266f-47f2-8d56-21bc7764e119/m_HPCKit_p_2023.2.0.49443_offline.dmg
16
+ value : https://registrationcenter-download.intel.com/akdlm/IRC_NAS/1b2baedd-a757-4a79-8abb-a5bf15adae9a/l_HPCKit_p_2024.0.0.49589_offline.sh
19
17
- name : WINDOWS_CPP_COMPONENTS
20
- value : intel.oneapi.win.cpp-compiler
18
+ value : intel.oneapi.win.cpp-dpcpp-common
21
19
- name : WINDOWS_FORTRAN_COMPONENTS
22
20
value : intel.oneapi.win.ifort-compiler
23
21
- name : WINDOWS_DPCPP_COMPONENTS
24
- value : intel.oneapi.win.dpcpp-compiler
22
+ value : intel.oneapi.win.cpp- dpcpp-common
25
23
- name : LINUX_CPP_COMPONENTS
26
- value : intel-oneapi-compiler- dpcpp-cpp-and-cpp-classic
24
+ value : intel-oneapi-dpcpp-cpp-compiler
27
25
- name : LINUX_FORTRAN_COMPONENTS
28
26
value : intel-oneapi-compiler-fortran
29
27
- name : LINUX_DPCPP_COMPONENTS
30
28
value : intel-oneapi-compiler-dpcpp-cpp
31
29
- name : LINUX_CPP_COMPONENTS_WEB
32
- value : intel.oneapi.lin.dpcpp-cpp-compiler-pro
30
+ value : intel.oneapi.lin.dpcpp-cpp-compiler
33
31
- name : LINUX_FORTRAN_COMPONENTS_WEB
34
32
value : intel.oneapi.lin.ifort-compiler
35
33
- name : LINUX_DPCPP_COMPONENTS_WEB
36
34
value : intel.oneapi.lin.dpcpp-cpp-compiler
37
- - name : MACOS_CPP_COMPONENTS
38
- value : intel.oneapi.mac.cpp-compiler
39
- - name : MACOS_FORTRAN_COMPONENTS
40
- value : intel.oneapi.mac.ifort-compiler
41
35
- name : SAMPLES_TAG
42
- value : 2023.2 .0
36
+ value : 2024.0 .0
43
37
- name : COMPILER_VERSION
44
- value : 2023.2 .0
38
+ value : 2024.0 .0
45
39
- name : TBB_VERSION
46
- value : 2021.10 .0
40
+ value : 2021.11 .0
47
41
- name : VS_VER
48
42
value : vs2022
49
43
@@ -399,71 +393,3 @@ jobs:
399
393
- bash : scripts/cache_exclude_linux.sh
400
394
displayName : exclude unused files from cache
401
395
condition : ne(variables.CACHE_RESTORED, 'true')
402
-
403
- - job : build_macOS_cpp
404
- pool :
405
- vmImage : ' macOS-latest'
406
- steps :
407
- - script : |
408
- sudo mkdir -p /opt/intel
409
- sudo chown $USER /opt/intel
410
- displayName: prepare for cache restore
411
- - task : Cache@2
412
- inputs :
413
- path : /opt/intel/oneapi
414
- key : ' "install" | "$(MACOS_HPCKIT_URL)" | "$(MACOS_CPP_COMPONENTS)"'
415
- cacheHitVar : CACHE_RESTORED
416
- - script : scripts/install_macos.sh $(MACOS_HPCKIT_URL) $(MACOS_CPP_COMPONENTS)
417
- displayName : install
418
- condition : ne(variables.CACHE_RESTORED, 'true')
419
- - script : scripts/build_macos.sh c++ $(SAMPLES_TAG)
420
- displayName : build
421
-
422
- # Delete the following if you don't want to save install logs
423
- - task : CopyFiles@2
424
- condition : ne(variables.CACHE_RESTORED, 'true')
425
- inputs :
426
- sourceFolder : ' $(Build.SourcesDirectory)'
427
- contents : |
428
- bootstrapper*
429
- installer*
430
- targetFolder : ' $(Build.ArtifactStagingDirectory)'
431
- - task : PublishBuildArtifacts@1
432
- condition : ne(variables.CACHE_RESTORED, 'true')
433
- inputs :
434
- pathToPublish : ' $(Build.ArtifactStagingDirectory)'
435
- artifactName : InstallLogs_$(Agent.JobName)
436
-
437
- - job : build_macOS_fortran
438
- pool :
439
- vmImage : ' macOS-latest'
440
- steps :
441
- - script : |
442
- sudo mkdir -p /opt/intel
443
- sudo chown $USER /opt/intel
444
- displayName: prepare for cache restore
445
- - task : Cache@2
446
- inputs :
447
- path : /opt/intel/oneapi
448
- key : ' "install" | "$(MACOS_HPCKIT_URL)" | "$(MACOS_FORTRAN_COMPONENTS)"'
449
- cacheHitVar : CACHE_RESTORED
450
- - script : scripts/install_macos.sh $(MACOS_HPCKIT_URL) $(MACOS_FORTRAN_COMPONENTS)
451
- displayName : install
452
- condition : ne(variables.CACHE_RESTORED, 'true')
453
- - script : scripts/build_macos.sh fortran $(SAMPLES_TAG)
454
- displayName : build
455
-
456
- # Delete the following if you don't want to save install logs
457
- - task : CopyFiles@2
458
- condition : ne(variables.CACHE_RESTORED, 'true')
459
- inputs :
460
- sourceFolder : ' $(Build.SourcesDirectory)'
461
- contents : |
462
- bootstrapper*
463
- installer*
464
- targetFolder : ' $(Build.ArtifactStagingDirectory)'
465
- - task : PublishBuildArtifacts@1
466
- condition : ne(variables.CACHE_RESTORED, 'true')
467
- inputs :
468
- pathToPublish : ' $(Build.ArtifactStagingDirectory)'
469
- artifactName : InstallLogs_$(Agent.JobName)
0 commit comments