From 963cfaa9eb87dc45aa55f8507e8e66b64961a2ff Mon Sep 17 00:00:00 2001 From: wpbonelli Date: Mon, 3 Feb 2025 07:21:50 -0500 Subject: [PATCH] ci: fix compiler compatibility check workflow (#2195) Quote intel version number. --- .github/workflows/compilers.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/compilers.yml b/.github/workflows/compilers.yml index af918f750f6..df62337d8a5 100644 --- a/.github/workflows/compilers.yml +++ b/.github/workflows/compilers.yml @@ -30,7 +30,7 @@ jobs: - {os: windows-2022, compiler: gcc, version: 12} - {os: windows-2022, compiler: gcc, version: 13} # ifx - - {os: ubuntu-22.04, compiler: intel, version: 2025.0} + - {os: ubuntu-22.04, compiler: intel, version: "2025.0"} - {os: ubuntu-22.04, compiler: intel, version: 2024.1} - {os: ubuntu-22.04, compiler: intel, version: "2024.0"} - {os: ubuntu-22.04, compiler: intel, version: 2023.2} @@ -38,7 +38,7 @@ jobs: - {os: ubuntu-22.04, compiler: intel, version: "2023.0"} - {os: ubuntu-22.04, compiler: intel, version: 2022.2.1} - {os: ubuntu-22.04, compiler: intel, version: 2022.2} - - {os: windows-2022, compiler: intel, version: 2025.0} + - {os: windows-2022, compiler: intel, version: "2025.0"} - {os: windows-2022, compiler: intel, version: 2024.1} - {os: windows-2022, compiler: intel, version: "2024.0"} - {os: windows-2022, compiler: intel, version: 2023.2}