File tree 3 files changed +532
-68
lines changed
3 files changed +532
-68
lines changed Original file line number Diff line number Diff line change 6
6
7
7
for file in ${SOURCES} ;
8
8
do
9
- clang-format-12 ${file} > expected-format
9
+ clang-format-18 ${file} > expected-format
10
10
diff -u -p --label=" ${file} " --label=" expected coding style" ${file} expected-format
11
11
done
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]
4
4
5
5
jobs :
6
6
host-x86 :
7
- runs-on : ubuntu-22 .04
7
+ runs-on : ubuntu-24 .04
8
8
strategy :
9
9
matrix :
10
- compiler : [gcc-12 , clang]
10
+ compiler : [gcc, clang]
11
11
architecture : [arm, riscv]
12
12
steps :
13
13
- name : checkout code
25
25
make check || exit 1
26
26
27
27
host-arm :
28
- runs-on : ubuntu-22 .04
28
+ runs-on : ubuntu-24 .04
29
29
steps :
30
30
- name : checkout code
31
31
uses : actions/checkout@v4
37
37
arch : none
38
38
distro : none
39
39
base_image : " --platform=linux/arm/v7 arm32v7/ubuntu:22.04"
40
+ githubToken : ${{ github.token }}
40
41
install : |
41
42
apt-get update -q -y
42
43
apt-get install -q -y build-essential
@@ -45,12 +46,12 @@ jobs:
45
46
make check || exit 1
46
47
47
48
coding-style :
48
- runs-on : ubuntu-22 .04
49
+ runs-on : ubuntu-24 .04
49
50
steps :
50
51
- uses : actions/checkout@v4
51
52
- name : coding convention
52
53
run : |
53
- sudo apt-get install -q -y clang-format-12
54
+ sudo apt-get install -q -y clang-format-18
54
55
.ci/check-newline.sh
55
56
.ci/check-format.sh
56
57
shell : bash
You can’t perform that action at this time.
0 commit comments