Skip to content

Commit

Permalink
github-actions: specify ifx as environment variable.
Browse files Browse the repository at this point in the history
  • Loading branch information
marcfehling committed Nov 9, 2024
1 parent 95a8113 commit 0fae855
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,17 +42,15 @@ jobs:
- name: build fds debug
run: |
source /opt/intel/oneapi/setvars.sh
cd ./Build/impi_intel_linux_db
export INTEL_IFORT=ifx
echo "INTEL_IFORT =" $INTEL_IFORT
cd ./Build/impi_intel_linux_db
sh ./make_fds.sh
./fds_impi_intel_linux_db
- name: build fds release
run: |
source /opt/intel/oneapi/setvars.sh
cd ./Build/impi_intel_linux
export INTEL_IFORT=ifx
echo "INTEL_IFORT =" $INTEL_IFORT
cd ./Build/impi_intel_linux
sh ./make_fds.sh
./fds_impi_intel_linux
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,13 +84,14 @@ jobs:
- name: build fds debug
run: |
call "C:\Program Files (x86)\Intel\oneAPI\setvars.bat" --config="oneapi_config.txt"
cd Build\impi_intel_win_db
set INTEL_IFORT=ifx
cd Build\impi_intel_win_db
call make_fds.bat
fds_impi_intel_win_db.exe
- name: build fds release
run: |
call "C:\Program Files (x86)\Intel\oneAPI\setvars.bat" --config="oneapi_config.txt"
set INTEL_IFORT=ifx
cd Build\impi_intel_win
call make_fds.bat
fds_impi_intel_win.exe

0 comments on commit 0fae855

Please sign in to comment.