Skip to content

Commit 32a3c69

Browse files
authored
Merge pull request #1022 from valassi/actions
Downgrade oneprocess tests in the CI to ubuntu-22.04 because clang-format-18 is not yet supported
2 parents 72e2d1a + 45e67b7 commit 32a3c69

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/testsuite_oneprocess.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,11 @@ jobs:
9696
#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
9797

9898
codegen:
99-
runs-on: ubuntu-latest
99+
###runs-on: ubuntu-latest
100+
# Temporarely dowgrade ubuntu-latest to ubuntu-22.04 in codegen step because clang-format-18 is not yet supported (#1022)
101+
# See https://github.com/actions/runner-images/issues/5490
102+
# See https://github.com/actions/runner-images/issues/10636
103+
runs-on: ubuntu-22.04
100104
needs: cleanup
101105

102106
steps:

tools/mg-clang-format/mg-clang-format

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ if [ ${clangVersion} -ge 13 ] && [ ${clangVersion} -le 15 ]; then
2020
else
2121
if [ ! -d /cvmfs/sft.cern.ch/lcg/releases/clang ]; then
2222
echo "ERROR! clang-format version >= 13 and <= 15 is not installed and /cvmfs/sft.cern.ch/lcg/releases/clang is not reachable"
23+
echo "ERROR! current clang-format version is '$clangVersion'"
2324
exit 1
2425
fi
2526
redrel=$(cat /etc/redhat-release 2> /dev/null)

0 commit comments

Comments
 (0)