@@ -7,43 +7,37 @@ trigger:
77
88variables :
99 - 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
1111 - 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
1313 - 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
1515 - 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
1917 - name : WINDOWS_CPP_COMPONENTS
20- value : intel.oneapi.win.cpp-compiler
18+ value : intel.oneapi.win.cpp-dpcpp-common
2119 - name : WINDOWS_FORTRAN_COMPONENTS
2220 value : intel.oneapi.win.ifort-compiler
2321 - name : WINDOWS_DPCPP_COMPONENTS
24- value : intel.oneapi.win.dpcpp-compiler
22+ value : intel.oneapi.win.cpp- dpcpp-common
2523 - name : LINUX_CPP_COMPONENTS
26- value : intel-oneapi-compiler- dpcpp-cpp-and-cpp-classic
24+ value : intel-oneapi-dpcpp-cpp-compiler
2725 - name : LINUX_FORTRAN_COMPONENTS
2826 value : intel-oneapi-compiler-fortran
2927 - name : LINUX_DPCPP_COMPONENTS
3028 value : intel-oneapi-compiler-dpcpp-cpp
3129 - name : LINUX_CPP_COMPONENTS_WEB
32- value : intel.oneapi.lin.dpcpp-cpp-compiler-pro
30+ value : intel.oneapi.lin.dpcpp-cpp-compiler
3331 - name : LINUX_FORTRAN_COMPONENTS_WEB
3432 value : intel.oneapi.lin.ifort-compiler
3533 - name : LINUX_DPCPP_COMPONENTS_WEB
3634 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
4135 - name : SAMPLES_TAG
42- value : 2023.2 .0
36+ value : 2024.0 .0
4337 - name : COMPILER_VERSION
44- value : 2023.2 .0
38+ value : 2024.0 .0
4539 - name : TBB_VERSION
46- value : 2021.10 .0
40+ value : 2021.11 .0
4741 - name : VS_VER
4842 value : vs2022
4943
@@ -399,71 +393,3 @@ jobs:
399393 - bash : scripts/cache_exclude_linux.sh
400394 displayName : exclude unused files from cache
401395 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