From b86510265125182011777c21b63a6b11bb5063fd Mon Sep 17 00:00:00 2001 From: "samuel.trahan" Date: Tue, 15 Oct 2024 20:57:38 +0000 Subject: [PATCH] explicitly specify gcc 11 hoping it will work --- .github/workflows/gcc.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/gcc.yml b/.github/workflows/gcc.yml index 11e59f075..0a869cffc 100644 --- a/.github/workflows/gcc.yml +++ b/.github/workflows/gcc.yml @@ -10,9 +10,9 @@ defaults: env: cache_key: gcc3 # The number (#) following the cache_key "gcc" is to flush Action cache. - CC: gcc-10 - FC: gfortran-10 - CXX: g++-10 + CC: gcc-11 + FC: gfortran-11 + CXX: g++-11 # A note on flushing Action cache and relevance to "cache_key" above. # There is no way to flush the Action cache, and hence a number (#) is appended