We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7c93c6 commit a71131cCopy full SHA for a71131c
.github/actions/setup-intel/action.yml
@@ -6,6 +6,12 @@ inputs:
6
description: 'Operating system of the runner. Must contain "windows" or "ubuntu".'
7
required: true
8
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
15
16
runs:
17
using: "composite"
@@ -87,7 +93,7 @@ runs:
87
93
uses: fortran-lang/setup-fortran@v1
88
94
with:
89
95
compiler: intel
90
- version: 2024.1.0 # Pinned until issue #1090 is resolved
96
+ version: ${{ inputs.version }}
91
97
92
98
- name: (Ubuntu) Install Intel oneAPI MPI and build dependencies
99
if: contains(inputs.os, 'ubuntu')
0 commit comments