File tree Expand file tree Collapse file tree 3 files changed +532
-68
lines changed Expand file tree Collapse file tree 3 files changed +532
-68
lines changed Original file line number Diff line number Diff line change 66
77for file in ${SOURCES} ;
88do
9- clang-format-12 ${file} > expected-format
9+ clang-format-18 ${file} > expected-format
1010 diff -u -p --label=" ${file} " --label=" expected coding style" ${file} expected-format
1111done
12- exit $( clang-format-12 --output-replacements-xml ${SOURCES} | egrep -c " </replacement>" )
12+ exit $( clang-format-18 --output-replacements-xml ${SOURCES} | egrep -c " </replacement>" )
Original file line number Diff line number Diff line change @@ -4,10 +4,10 @@ on: [push, pull_request]
44
55jobs :
66 host-x86 :
7- runs-on : ubuntu-22 .04
7+ runs-on : ubuntu-24 .04
88 strategy :
99 matrix :
10- compiler : [gcc-12 , clang]
10+ compiler : [gcc, clang]
1111 architecture : [arm, riscv]
1212 steps :
1313 - name : checkout code
2525 make check || exit 1
2626
2727 host-arm :
28- runs-on : ubuntu-22 .04
28+ runs-on : ubuntu-24 .04
2929 steps :
3030 - name : checkout code
3131 uses : actions/checkout@v4
3737 arch : none
3838 distro : none
3939 base_image : " --platform=linux/arm/v7 arm32v7/ubuntu:22.04"
40+ githubToken : ${{ github.token }}
4041 install : |
4142 apt-get update -q -y
4243 apt-get install -q -y build-essential
@@ -45,12 +46,12 @@ jobs:
4546 make check || exit 1
4647
4748 coding-style :
48- runs-on : ubuntu-22 .04
49+ runs-on : ubuntu-24 .04
4950 steps :
5051 - uses : actions/checkout@v4
5152 - name : coding convention
5253 run : |
53- sudo apt-get install -q -y clang-format-12
54+ sudo apt-get install -q -y clang-format-18
5455 .ci/check-newline.sh
5556 .ci/check-format.sh
5657 shell : bash
You can’t perform that action at this time.
0 commit comments