Skip to content

Commit a71131c

Browse files
committed
generalize Intel compiler version
1 parent d7c93c6 commit a71131c

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/actions/setup-intel/action.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ inputs:
66
description: 'Operating system of the runner. Must contain "windows" or "ubuntu".'
77
required: true
88
type: string
9+
10+
version:
11+
description: 'Intel oneAPI installer version for Ubuntu (e.g. 2024.1.0).'
12+
required: false
13+
default: '2024.1.0'
14+
type: string
915

1016
runs:
1117
using: "composite"
@@ -87,7 +93,7 @@ runs:
8793
uses: fortran-lang/setup-fortran@v1
8894
with:
8995
compiler: intel
90-
version: 2024.1.0 # Pinned until issue #1090 is resolved
96+
version: ${{ inputs.version }}
9197

9298
- name: (Ubuntu) Install Intel oneAPI MPI and build dependencies
9399
if: contains(inputs.os, 'ubuntu')

0 commit comments

Comments
 (0)