Skip to content

Commit 421fce2

Browse files
authored
Merge pull request #13735 from marcfehling/windows
github-actions: cleanup and oneapi 2025.0 release
2 parents d57658c + 32e4e21 commit 421fce2

File tree

3 files changed

+7
-20
lines changed

3 files changed

+7
-20
lines changed

.github/workflows/linux.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,17 +42,15 @@ jobs:
4242
- name: build fds debug
4343
run: |
4444
source /opt/intel/oneapi/setvars.sh
45-
cd ./Build/impi_intel_linux_db
4645
export INTEL_IFORT=ifx
47-
echo "INTEL_IFORT =" $INTEL_IFORT
46+
cd ./Build/impi_intel_linux_db
4847
sh ./make_fds.sh
4948
./fds_impi_intel_linux_db
5049
- name: build fds release
5150
run: |
5251
source /opt/intel/oneapi/setvars.sh
53-
cd ./Build/impi_intel_linux
5452
export INTEL_IFORT=ifx
55-
echo "INTEL_IFORT =" $INTEL_IFORT
53+
cd ./Build/impi_intel_linux
5654
sh ./make_fds.sh
5755
./fds_impi_intel_linux
5856

.github/workflows/osx.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- name: install openmpi
3939
run: |
4040
brew install open-mpi
41-
echo "OMPI_FC=gfortran-13" >> $GITHUB_ENV
41+
echo "OMPI_FC=gfortran-14" >> $GITHUB_ENV
4242
4343
- name: build fds debug
4444
run: |

.github/workflows/windows.yml

Lines changed: 4 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ permissions:
2626
env:
2727
# update urls for oneapi packages according to
2828
# https://github.com/oneapi-src/oneapi-ci/blob/master/.github/workflows/build_all.yml
29-
WINDOWS_BASEKIT_URL: https://registrationcenter-download.intel.com/akdlm/IRC_NAS/d91caaa0-7306-46ea-a519-79a0423e1903/w_BaseKit_p_2024.2.1.101_offline.exe
29+
WINDOWS_BASEKIT_URL: https://registrationcenter-download.intel.com/akdlm/IRC_NAS/b380d914-366b-4b77-a74a-05e3c38b3514/intel-oneapi-base-toolkit-2025.0.0.882_offline.exe
3030
WINDOWS_BASEKIT_COMPONENTS: intel.oneapi.win.mkl.devel
31-
WINDOWS_HPCKIT_URL: https://registrationcenter-download.intel.com/akdlm/IRC_NAS/745e923a-3f85-4e1e-b6dd-637c0e9ccba6/w_HPCKit_p_2024.2.1.80_offline.exe
31+
WINDOWS_HPCKIT_URL: https://registrationcenter-download.intel.com/akdlm/IRC_NAS/f07e32fa-b505-4b90-8a79-e328ce9ad9d6/intel-oneapi-hpc-toolkit-2025.0.0.822_offline.exe
3232
WINDOWS_HPCKIT_COMPONENTS: intel.oneapi.win.ifort-compiler:intel.oneapi.win.mpi.devel
3333

3434

@@ -71,26 +71,15 @@ jobs:
7171
webimage_hpc_extracted\bootstrapper.exe -s --action install --components=%WINDOWS_HPCKIT_COMPONENTS% --eula=accept -p=NEED_VS2017_INTEGRATION=0 -p=NEED_VS2019_INTEGRATION=0 --log-dir=.
7272
rd /s/q "webimage_hpc_extracted"
7373
74-
# github-actions does not cache windows symlinks, so we need to specify the version of each component explicitly
75-
# https://www.intel.com/content/www/us/en/develop/documentation/oneapi-programming-guide/top/oneapi-development-environment-setup/use-the-setvars-script-with-windows/use-a-config-file-for-setvars-bat-on-windows.html
76-
# https://oneapi-src.github.io/oneapi-ci/
77-
- name: specify oneapi version
78-
run: |
79-
(
80-
echo compiler=2024.2.1
81-
echo mkl=2024.2.1
82-
echo mpi=2021.13.1
83-
) > oneapi_config.txt
8474
- name: build fds debug
8575
run: |
86-
call "C:\Program Files (x86)\Intel\oneAPI\setvars.bat" --config="oneapi_config.txt"
87-
cd Build\impi_intel_win_db
8876
set INTEL_IFORT=ifx
77+
cd Build\impi_intel_win_db
8978
call make_fds.bat
9079
fds_impi_intel_win_db.exe
9180
- name: build fds release
9281
run: |
93-
call "C:\Program Files (x86)\Intel\oneAPI\setvars.bat" --config="oneapi_config.txt"
82+
set INTEL_IFORT=ifx
9483
cd Build\impi_intel_win
9584
call make_fds.bat
9685
fds_impi_intel_win.exe

0 commit comments

Comments
 (0)