Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest]
toolchain:
- {compiler: gcc, version: 11}
- {compiler: intel-classic, version: '2021.9'}
- {compiler: intel-classic, version: '2021.10'}
include:
- os: ubuntu-latest
toolchain: {compiler: intel, version: '2023.1'}
toolchain: {compiler: intel, version: '2023.2'}
exclude:
- os: windows-latest
toolchain: {compiler: intel-classic, version: '2021.9'}
toolchain: {compiler: intel-classic, version: '2021.10'}

steps:
- uses: awvwgk/setup-fortran@v1
Expand All @@ -60,8 +60,8 @@ jobs:
- *intel-classic* (for `ifort`)
- *version*: Version of the compiler toolchain, available options are
- *5–13* for *gcc*
- *2021.1–2023.1* for *intel*
- *2021.1–2021.9* for *intel-classic*
- *2021.1–2023.2* for *intel*
- *2021.1–2021.10* for *intel-classic*

**Note:** version 13 of the GNU toolchain is not yet available on Windows.

Expand Down Expand Up @@ -105,9 +105,9 @@ Supported Intel toolchains:

| runner | compiler | version |
| :-------- | :------------- | :------ |
| ubuntu-\* | intel | 2023.1, 2023.0, <br/> 2022.2.1, 2022.2, 2022.1, 2022.0, <br/> 2021.4, 2021.3, 2021.2, 2021.1.2, 2021.1 |
| ubuntu-\* | intel-classic | 2021.9, 2021.8, <br/> 2021.7.1, 2021.7, 2021.6, 2021.5, <br/> 2021.4, 2021.3, 2021.2, 2021.1.2, 2021.1 |
| macos-\* | intel-classic | 2021.9, 2021.8, <br/> 2021.7.1, 2021.7, 2021.6, 2021.5, <br/> 2021.4, 2021.3, 2021.2, 2021.1 |
| ubuntu-\* | intel | 2023.2, 2023.1, 2023.0, <br/> 2022.2.1, 2022.2, 2022.1, 2022.0, <br/> 2021.4, 2021.3, 2021.2, 2021.1.2, 2021.1 |
| ubuntu-\* | intel-classic | 2021.10, 2021.9, 2021.8, <br/> 2021.7.1, 2021.7, 2021.6, 2021.5, <br/> 2021.4, 2021.3, 2021.2, 2021.1.2, 2021.1 |
| macos-\* | intel-classic | 2021.10, 2021.9, 2021.8, <br/> 2021.7.1, 2021.7, 2021.6, 2021.5, <br/> 2021.4, 2021.3, 2021.2, 2021.1 |


## License
Expand Down
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ runs:
install_gcc $platform
;;
intel-classic)
version=${VERSION:-2023.1.0}
version=${VERSION:-2023.2.0}
install_intel $platform true
;;
intel)
version=${VERSION:-2023.1.0}
version=${VERSION:-2023.2.0}
install_intel $platform false
;;
*)
Expand Down
8 changes: 7 additions & 1 deletion setup-fortran.sh
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,9 @@ intel_version_map_l()
local classic=$2
if $classic; then
case $actual_version in
2021.10.0 | 2021.10)
version=2023.2.0
;;
2021.9.0 | 2021.9)
version=2023.1.0
;;
Expand Down Expand Up @@ -177,7 +180,7 @@ intel_version_map_l()
2022.0.0 | 2022.0)
version=2022.0.2
;;
2023.1 | 2023.0 | 2022.2 | 2022.1 | 2021.4 | 2021.3 | 2021.2)
2023.2 | 2023.1 | 2023.0 | 2022.2 | 2022.1 | 2021.4 | 2021.3 | 2021.2)
version=$actual_version.0
;;
2021.1)
Expand All @@ -194,6 +197,9 @@ intel_version_map_m()
{
local actual_version=$1
case $actual_version in
2021.10.0 | 2021.10)
version=2023.2.0
;;
2021.9.0 | 2021.9)
version=2023.1.0
;;
Expand Down