diff --git a/.github/workflows/testsuite_oneprocess.yml b/.github/workflows/testsuite_oneprocess.yml index 2afc62b885..a43fe7939a 100644 --- a/.github/workflows/testsuite_oneprocess.yml +++ b/.github/workflows/testsuite_oneprocess.yml @@ -96,7 +96,11 @@ jobs: #++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ codegen: - runs-on: ubuntu-latest + ###runs-on: ubuntu-latest + # Temporarely dowgrade ubuntu-latest to ubuntu-22.04 in codegen step because clang-format-18 is not yet supported (#1022) + # See https://github.com/actions/runner-images/issues/5490 + # See https://github.com/actions/runner-images/issues/10636 + runs-on: ubuntu-22.04 needs: cleanup steps: diff --git a/tools/mg-clang-format/mg-clang-format b/tools/mg-clang-format/mg-clang-format index 9f36462da3..0f1a819a96 100755 --- a/tools/mg-clang-format/mg-clang-format +++ b/tools/mg-clang-format/mg-clang-format @@ -20,6 +20,7 @@ if [ ${clangVersion} -ge 13 ] && [ ${clangVersion} -le 15 ]; then else if [ ! -d /cvmfs/sft.cern.ch/lcg/releases/clang ]; then echo "ERROR! clang-format version >= 13 and <= 15 is not installed and /cvmfs/sft.cern.ch/lcg/releases/clang is not reachable" + echo "ERROR! current clang-format version is '$clangVersion'" exit 1 fi redrel=$(cat /etc/redhat-release 2> /dev/null)