Skip to content

Commit

Permalink
Merge pull request #1022 from valassi/actions
Browse files Browse the repository at this point in the history
Downgrade oneprocess tests in the CI to ubuntu-22.04 because clang-format-18 is not yet supported
  • Loading branch information
valassi authored Oct 12, 2024
2 parents 72e2d1a + 45e67b7 commit 32a3c69
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/testsuite_oneprocess.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
1 change: 1 addition & 0 deletions tools/mg-clang-format/mg-clang-format
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 32a3c69

Please sign in to comment.