File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -31,11 +31,15 @@ jobs:
31
31
- uses : actions/setup-python@v3
32
32
33
33
- name : Install dependencies
34
- run : sudo apt-get install -y clang-format
34
+ run : |
35
+ mkdir bin
36
+ wget https://github.com/muttleyxd/clang-tools-static-binaries/releases/download/master-8f72ab3c/clang-format-17_linux-amd64 -O bin/clang-format-17
37
+ chmod +x bin/clang-format-17
35
38
36
39
- name : Run clang-format
37
40
run : |
38
41
.github/scripts/run-clang-format.py \
42
+ --clang-format-executable bin/clang-format-17 \
39
43
-i \
40
44
-r Source Data/Base.rte/Shaders \
41
45
--exclude Source/System/Base64 \
47
51
- name : Add missing newlines
48
52
run : |
49
53
.github/scripts/run-clang-format.py \
50
- -i --clang-format-executable .github/scripts/add-eol.sh \
54
+ --clang-format-executable .github/scripts/add-eol.sh \
55
+ -i \
51
56
-r Source Data/Base.rte/Shaders \
52
57
--exclude Source/System/Base64 \
53
58
--exclude Source/System/BitMask \
You can’t perform that action at this time.
0 commit comments