Skip to content

Commit ba677ae

Browse files
authored
Merge pull request #13720 from rmcdermo/master
Workflows: use ifx for Intel Linux on Actions
2 parents cfbabbc + 5afff34 commit ba677ae

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/linux.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,16 @@ jobs:
4343
run: |
4444
source /opt/intel/oneapi/setvars.sh
4545
cd ./Build/impi_intel_linux_db
46+
export INTEL_IFORT=ifx
47+
echo "INTEL_IFORT =" $INTEL_IFORT
4648
sh ./make_fds.sh
4749
./fds_impi_intel_linux_db
4850
- name: build fds release
4951
run: |
5052
source /opt/intel/oneapi/setvars.sh
5153
cd ./Build/impi_intel_linux
54+
export INTEL_IFORT=ifx
55+
echo "INTEL_IFORT =" $INTEL_IFORT
5256
sh ./make_fds.sh
5357
./fds_impi_intel_linux
5458

Build/makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ VPATH = ../Source
1313

1414
# set compiler type
1515

16-
I_IFORT=ifx
16+
I_IFORT=ifort
1717
ifdef INTEL_IFORT
1818
I_IFORT=$(INTEL_IFORT)
1919
endif

0 commit comments

Comments
 (0)